Skip to content

Instantly share code, notes, and snippets.

@carlossalas
Created November 22, 2012 22:01
Show Gist options
  • Save carlossalas/4133084 to your computer and use it in GitHub Desktop.
Save carlossalas/4133084 to your computer and use it in GitHub Desktop.
JS: Force Input Numeric Only
//Force Input Numeric Only
jQuery.fn.ForceNumericOnly = function() {return this.each(function() {$(this).keydown(function(e) {var key = e.charCode || e.keyCode || 0; return (key == 8 || key == 9 || key == 46 || (key >= 37 && key <= 40) || (key >= 48 && key <= 57) || (key >= 96 && key <= 105)); }); }); };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment