Last active
May 14, 2022 22:54
-
-
Save Klerith/45bafbc3278030477799 to your computer and use it in GitHub Desktop.
JavaScript: Only Numbers Class
This file contains 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
/** | |
* Allow only numbers, backspace, delete, tab, escape, enter and dots. | |
* for HTML input box | |
*/ | |
$(document).ready(function() { | |
$(".numberOnly").keydown(function (e) { | |
// Allow: backspace, delete, tab, escape, enter and . | |
if ($.inArray(e.keyCode, [46, 8, 9, 27, 13, 190]) !== -1 || | |
// Allow: Ctrl+A | |
(e.keyCode == 65 && e.ctrlKey === true) || | |
// Allow: home, end, left, right | |
(e.keyCode >= 35 && e.keyCode <= 39)) { | |
// let it happen, don't do anything | |
return; | |
} | |
// Ensure that it is a number and stop the keypress | |
if ((e.shiftKey || (e.keyCode < 48 || e.keyCode > 57)) && (e.keyCode < 96 || e.keyCode > 105)) { | |
e.preventDefault(); | |
} | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When you set an input with this particular class, it will only accept numbers and dots