Skip to content

Instantly share code, notes, and snippets.

@a-double
Last active August 29, 2015 14:16
Show Gist options
  • Select an option

  • Save a-double/ed740efd400033f0dd10 to your computer and use it in GitHub Desktop.

Select an option

Save a-double/ed740efd400033f0dd10 to your computer and use it in GitHub Desktop.
jQuery plugin script to only allow numeric values in text fields.
$.fn.allowNumeric = function() {
return this.on( 'keyup', function() {
this.value = this.value.replace( /[^0-9\.]/g, '' );
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment