Advertisement
Guest User

Untitled

a guest
May 20th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. function handleKeydown(e) {
  2. if (e.shiftKey) {
  3. if (e.which !== 9) {
  4. e.preventDefault()
  5. }
  6. }
  7. if (e.which > 57) {
  8. e.preventDefault()
  9. }
  10. if (e.which === 32) {
  11. e.preventDefault()
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement