onsubmit event
Complete Event Object 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 Object Reference
Whether you're new to XML or already an advanced user, the user-friendly views
and powerful entry helpers, wizards, and debuggers in XMLSpy are designed to
meet your XML and Web services development needs from start to finish.
- XML editor
- Graphical XML Schema / DTD editors
- XSLT 1.0/2.0 editor, debugger, profiler
- XQuery editor, debugger, profiler
- Support for Office Open XML (OOXML)
- Graphical WSDL editor & SOAP debugger
- Java, C#, C++ code generation
- And much more!
Download a fully functional free 30-day trial today!
|