Guest User

Untitled

a guest
Sep 10th, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.63 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <meta charset="utf-8">
  5.         <title>Keydown-keyup testi</title>
  6.         <script>
  7.             window.onload = () => {
  8.                 document.addEventListener('keydown', (e) => {
  9.                     console.log('keydown:', e.key);
  10.                     document.dispatchEvent(new KeyboardEvent('keyup',{'key':e.key}));
  11.                 });
  12.                 document.addEventListener('keyup', (e) => {
  13.                     console.log('keyup:', e.key);
  14.                 });
  15.             };
  16.         </script>
  17.     </head>
  18.     <body>
  19.         <h1>Keydown-keyup testi</h1>
  20.     </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment