$(document).ready(function() {
$("#myTextBox").inputFilter(function(value) {
return /^\d*$/.test(value); // Allow digits only, using a RegExp
},"Only digits allowed");
});
Updated minified snippet to allow Ctrl+A, Ctrl+C, Ctrl+V, Ctrl+X and prevent the letters: "acvx"
Sylvan D Ash
- 1.1k
- 14
- 24
e.ctrlkey does not support Mac Command+A, added e.metaKey to allow Select All from Mac
William Isted
- 12.4k
- 4
- 34
- 47