Advertisement
Felanpro

onkeydown

Jun 16th, 2016
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <body onkeydown="press_key()">
  2.        
  3.             <p>Press any key on the keyboard</p>
  4.        
  5.                 <script>
  6.                
  7.                     function press_key()
  8.                     {
  9.                         alert("press_key() function executed. hihiihhihih :)");
  10.                     }
  11.                    
  12.                 </script>
  13.        
  14.         </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement