Skip to content

Instantly share code, notes, and snippets.

@Umbrous
Created September 5, 2016 13:49
Show Gist options
  • Save Umbrous/b74a4f2ed382a61940b8e58e6c4d71f0 to your computer and use it in GitHub Desktop.
Save Umbrous/b74a4f2ed382a61940b8e58e6c4d71f0 to your computer and use it in GitHub Desktop.
// ONLY number input
$('.pop-up__transfer_points input[type="text"]').ForceNumericOnly();
//функция
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