Improving the Mobility of People with Disabilities!

Book Consultation

jQuery(document).ready(function($){ $(document).on('submit', '.elementor-form', function(e){ var phone = $(this).find('#form-field-field_bf013fd').val(); var indianMobile = /^[6-9][0-9]{9}$/; if(!indianMobile.test(phone)){ e.preventDefault(); $(this) .find('#form-field-field_bf013fd') .focus(); alert("Please enter a valid 10 digit Indian mobile number"); return false; } }); });