For any questions concerning Billionaire Home’s exclusive collections or to schedule your visit, please contact us by phone. You may also submit any inquiries on our customer form below. Please indicate the reference area for your request in the subject area of the menu.
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.");
}
});
});