Skip to content

Instantly share code, notes, and snippets.

@carmoreira
Created July 1, 2019 13:23
Show Gist options
  • Select an option

  • Save carmoreira/1d3cac2b1d77e4022438ee445256a34c to your computer and use it in GitHub Desktop.

Select an option

Save carmoreira/1d3cac2b1d77e4022438ee445256a34c to your computer and use it in GitHub Desktop.
only allow numbers on input field (telephone field in advisor quiz)
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