Created
July 1, 2019 13:23
-
-
Save carmoreira/1d3cac2b1d77e4022438ee445256a34c to your computer and use it in GitHub Desktop.
only allow numbers on input field (telephone field in advisor quiz)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| jQuery('.advq_askinfo_2 input').on('keypress keyup blur',function (event) { | |
| jQuery(this).val(jQuery(this).val().replace(/[^\d].+/, '')); | |
| if ((event.which < 48 || event.which > 57)) { | |
| event.preventDefault(); | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment