Skip to content

Instantly share code, notes, and snippets.

@vlrmprjct
Created July 16, 2015 08:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vlrmprjct/5f737db00266c72d3ac2 to your computer and use it in GitHub Desktop.
Save vlrmprjct/5f737db00266c72d3ac2 to your computer and use it in GitHub Desktop.
Input Numeric only
// Numeric only control handler
jQuery.fn.ForceNumericOnly =
function()
{
return this.each(function()
{
$(this).keydown(function(e)
{
var key = e.charCode || e.keyCode || 0;
// allow backspace, tab, delete, enter, arrows, numbers and keypad numbers ONLY
// home, end, period, and numpad decimal
return (
key == 8 ||
key == 9 ||
key == 13 ||
key == 46 ||
key == 110 ||
key == 190 ||
(key >= 35 && 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