Guest User

Untitled

a guest
Jun 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. // var inputAnyValue = $('"your selector" input[type="text"]');
  2.  
  3. // inputAnyValue.keypress(function(e) {
  4. // // if this value is not a number
  5. // if (e.which != 8 && e.which != 0 && e.which != 46 && (e.which < 48 || e.which > 57)) {
  6. // return false;
  7. // }
  8. // });
Add Comment
Please, Sign In to add comment