An event handler for the submit event on the window.
SyntaxEdit
window.onsubmit = funcRef;
Parameters
funcRef
is a reference to a function.
ExampleEdit
<html>
<script>
function reg() {
window.captureEvents(Event.SUBMIT);
window.onsubmit = hit;
}
function hit() {
console.log('hit');
}
</script>
<body onload="reg();">
<form>
<input type="submit" value="submit" />
</form>
<div id="d"> </div>
</body>
</html>
NotesEdit
The submit event is raised when the user clicks a submit button in a form (<input type="submit"/>
).
SpecificationsEdit
Specification | Status | Comment |
---|---|---|
WHATWG HTML Living Standard The definition of 'onsubmit' in that specification. |
Living Standard |