Edit This Code:
<!DOCTYPE html>
<html>
<head>
<script>
function message() {
    alert("This alert box was triggered by the onreset event handler");
}
</script>
</head>
<body>

<form onreset="message()">
Enter your name: <input type="text" size="20">
<input type="reset">
</form>

</body>
</html>


Result:
Try it Yourself - © w3schools.com
Privacy Policy