Created
September 5, 2016 13:49
-
-
Save Umbrous/b74a4f2ed382a61940b8e58e6c4d71f0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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