Guest User

Untitled

a guest
May 22nd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. $('#DisplayVote').on('keyup', function(e) {
  2. if ((e.which > 57 || e.which < 48) && e.which !== 8 ) {
  3. e.preventDefault();
  4. }
  5. var startValVote = $(e.target).val(); // Значение до правок
  6. });
Add Comment
Please, Sign In to add comment