Ireo Grand Arch- A Masterworkin Sector 67, Gurgaon
Contact Us
[formidable id=2]
get a quote
jQuery(document).ready(function($) {
$('form').on('submit', function(e) {
var phoneInput = $('input[name="form_fields[phone]"]').val(); // Adjust if necessary
var phonePattern = /^\+91\d{10}$/; // Regex: +91 followed by exactly 10 digits
if (!phonePattern.test(phoneInput)) {
e.preventDefault(); // Prevent form submission
alert("Please enter a valid 10-digit phone number with +91 country code.");
}
});
});