1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00
Added phone number validation
This commit is contained in:
Ivan Chaplygin 2024-04-10 18:02:24 +03:00
parent fd7f8bc625
commit 92b56c798a

View file

@ -108,4 +108,11 @@ jQuery(function() {
jQuery(this).fadeOut();
}
});
jQuery('#phoneLoyalty').keydown(function (e) {
let key = e.key;
return (key >= '0' && key <= '9') || key == '+' || key == '(' || key == ')'|| key == '-' ||
key == 'ArrowLeft' || key == 'ArrowRight' || key == 'Delete' || key == 'Backspace';
});
});