The onsubmit event
Complete Event Reference
Definition and Usage
The onsubmit event occurs when the submit button in a form is clicked.
Syntax
onsubmit="SomeJavaScriptCode"
|
Parameter |
Description |
SomeJavaScriptCode |
Required. Specifies a JavaScript to be executed when the
event occurs. |
Supported by the following HTML tags:
Supported by the following JavaScript objects:
Example
In this example an alert box will be displayed when the user clicks on the submit
button:
<html>
<head>
<script type="text/javascript">
function welcome()
{
alert("Welcome " + document.forms["myform"]["fname"].value + "!")
}
</script>
</head>
<body>
What is your name?<br />
<form name="myform" action="submit.htm" onSubmit="welcome()">
<input type="text" name="fname" size="20">
<input type="submit" value="Submit">
</form>
</body>
</html>
|
The output of the code above will be:
Try-It-Yourself Demos
onsubmit
How to use onsubmit.
Complete Event Reference
|
|
|
See why there are 20,000+ Ektron integrations worldwide.
Request an INSTANT DEMO or download a FREE TRIAL today. |
|
|
|