Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
Not found
Schedule a visit
jQuery(function() {
jQuery('#form-field-name').keydown(function (e) {
if (e.shiftKey || e.ctrlKey || e.altKey) {
e.preventDefault();
} else {
var key = e.keyCode;
if (!((key == 8) || (key == 32) || (key == 46) || (key >= 35 && key = 65 && key <= 90))) {
e.preventDefault();
}
}
});
});
jQuery(document).ready(function () {
// Function to restrict input to numbers only
jQuery('#form-field-field_2aab619').on('input', function (e) {
// Get the value entered in the input field
var inputValue = e.target.value;
// Remove any non-numeric characters
var numericValue = inputValue.replace(/\D/g, '');
// Update the input field with only numeric characters
jQuery(this).val(numericValue);
});
});
jQuery(function(){
jQuery( '#form-field-field_2aab619' ).attr({ 'maxlength':10,'minlength':10} ); // Define number limits
});