Advertisement
pahapoika91

disable keyboard

Dec 23rd, 2016
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. <script>
  2. // Author: pahapoika91
  3. // Name: Disable Keyboard
  4. // Description: Disables keyboard input
  5.  
  6. window.onkeydown=function(e){
  7. e.preventDefault();
  8. return false;
  9. }
  10. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement