HTML Editor
<!DOCTYPE html> <html lang="en-US"> <body> <input type="text" oninput="myFunction()"> <script> function myFunction(){ alert("You are typing"); } </script> <p><strong>Note</strong> : Type something in the input box.</p> </body> </html>
OUTPUT
×

Save as Private