HTML Editor
<!DOCTYPE html> <html lang="en-US"> <body> <input type="text" onkeyup="myFunction()"> <script> function myFunction(){ alert("Your Keyboard key is up"); } </script> <p><strong>Note</strong> : Type something in the input element.</p> </body> </html>
OUTPUT
×

Save as Private