Act Wise Before You Commit Elsewhere, Don't Risk Missing Out on Exploring India's Most Updated Digital Marketing Course for 2024 The Future of AI and Data-Driven Learning Awaits You! Avoid Regrets Later!
document.addEventListener("DOMContentLoaded", function () {
jQuery(document).ready(function ($) {
$('form').on('submit', function (event) {
let phoneInput = $('input[name="form_fields[ph912345]"]'); // Replace 'ph912345' with the actual ID
let phonePattern = /^[6-9]\d{9}$/; // India: 10-digit number starting with 6-9
if (!phonePattern.test(phoneInput.val())) {
alert("Please enter a valid 10-digit phone number.");
event.preventDefault(); // Stop form submission
}
});
});
});