Javascript examples for DOM Event:addEventListener
The onreset event occurs when a form is reset.
Bubbles | Yes |
---|---|
Cancelable | Yes |
Supported HTML tags: | <form> |
<!DOCTYPE html> <html> <body> <form id="myForm"> Enter name: <input type="text"> <input type="reset"> </form>// w w w . j a v a 2s .c om <p id="demo"></p> <script> document.getElementById("myForm").addEventListener("reset", myFunction); function myFunction() { document.getElementById("demo").innerHTML = "The form was reset"; } </script> </body> </html>