Jaypee Greens Sports City

3 Properties
Sort by:

Compare listings

Compare
document.addEventListener("DOMContentLoaded", function () { const indianFormatter = new Intl.NumberFormat('en-IN');// Select all elements that display numeric values const numberElements = document.querySelectorAll('.calc-result, .calc-total, .sub-item-value, .calc-container-wrapper'); // Replace with actual classesnumberElements.forEach(function (el) { // Extract numeric value from the element's text const text = el.textContent.trim(); const num = parseFloat(text.replace(/[^0-9.-]/g, ''));// Check if the extracted value is a valid number if (!isNaN(num)) { // Format the number using Indian numbering system const formatted = indianFormatter.format(num);// Replace the element's text with the formatted number el.textContent = formatted; } }); });