Published in: JavaScript
Expand |
Embed | Plain Text
$('input.valid-number').bind('keypress', function(e) { return ( e.which!=8 && e.which!=0 && (e.which<48 || e.which>57)) ? false : true ; })
You need to login to post a comment.