Oops! Something went wrong while submitting the form.
Contact Us
We’re here to help. Whether you're interested in a specific home or just exploring owner-financing options, we’ll point you in the right direction.
Thanks! We’ll reach out shortly.
Something went wrong — please try again.
Other Ways to Connect
📞 Call or Text:
📍 Markets Served: St. Louis Metro & more coming soon
📧 Email:
script>
document.addEventListener('DOMContentLoaded', (event) => {
// Find all elements with the custom attribute data-format="number"
const elements = document.querySelectorAll('[data-format="number"]');
elements.forEach(el => {
// Get the raw number text (e.g., "59000")
const rawNumber = el.textContent.trim();
// Check if it's a valid number before trying to format it
if (!isNaN(parseFloat(rawNumber)) && isFinite(rawNumber)) {
// Format the number with commas (e.g., "59,000")
// This uses the user's browser language for correct comma/period placement
const formattedNumber = new Intl.NumberFormat().format(rawNumber);
// Update the text content of the element
el.textContent = formattedNumber;
}
});
});