In Javascript, how can I attach an event handler so that it gets run after the default action?
<form target="_blank" action="submit.php" onsubmit="doThisAfterSubmit()">
<input type="submit" onclick="doThisAfterSubmit()" />
</form>
Similar but insufficient Stack Overflow questions:
javascript: Possible to add event handler that runs after the default behavior?
How to catch event after default action was performed in JavaScript
I have read these but they are dealing with keystroke events solved with using a variation such as keyup
over keypress
. The only other solution I have seen is the setTimeout()
method. I want to avoid using setTimeout()
in favor of a more elegant solution if one exists.
My use case is that I want to remove the form from the DOM after the submit.
In Javascript, how can I attach an event handler so that it gets run after the default action?
<form target="_blank" action="submit.php" onsubmit="doThisAfterSubmit()">
<input type="submit" onclick="doThisAfterSubmit()" />
</form>
Similar but insufficient Stack Overflow questions:
javascript: Possible to add event handler that runs after the default behavior?
How to catch event after default action was performed in JavaScript
I have read these but they are dealing with keystroke events solved with using a variation such as keyup
over keypress
. The only other solution I have seen is the setTimeout()
method. I want to avoid using setTimeout()
in favor of a more elegant solution if one exists.
My use case is that I want to remove the form from the DOM after the submit.
Share Improve this question edited May 10, 2021 at 18:34 Brian Tompsett - 汤莱恩 5,89372 gold badges61 silver badges133 bronze badges asked Jun 12, 2013 at 22:18 km6zlakm6zla 4,9072 gold badges31 silver badges53 bronze badges 7- What do you mean by "after the default behaviour"? When the POST request has been sent? When the response has been received? – lonesomeday Commented Jun 12, 2013 at 22:20
- 2 Once the submit has pleted, another page is loaded, and your javascript is lost, so the answer is simple, you can't! – adeneo Commented Jun 12, 2013 at 22:22
-
2
@adeneo Hint: look at the form's
target
attribute. – lonesomeday Commented Jun 12, 2013 at 22:24 -
Give the form an ID (lets use
test
),onclick="document.getElementById('test').style.display = 'none';"
. Form gets submitted, disappears. – tymeJV Commented Jun 12, 2013 at 22:25 -
onsubmit="this.style.display = 'none';"
works perfectly. Perhaps the problem is in yourdoThisAfterSubmit()
function? – NikitaBaksalyar Commented Jun 12, 2013 at 22:29
2 Answers
Reset to default 5You could perform the default action yourself, then do what you want, and then prevent the default action from running.
<form target="_blank" action="submit.php"
onsubmit="this.submit(); doThisAfterSubmit(this); return false;">
<input type="submit" />
</form>
Note: Calling this.submit()
in "onsubmit" will not cause an infinite loop as you might think.
jsfiddle demo
EDIT: My original jsfiddle was only displaying text after the form submit. I tried it again, but changed it to remove the form like you want. That caused the form to no longer submit, even though this.submit()
was called first. In that case, you can use setTimeout()
to delay the removal of the form until the original thread is finished executing, like this:
function doThisAfterSubmit(form) {
setTimeout(function() {
$(form).remove();
}, 0);
};
Now the form is submitted before it is removed.
jsfiddle demo
You can use event bubbling instead:
<div onclick="this.remove();">
<form target="_blank" action="submit.php" onsubmit="alert('submitted);">
<input type="submit" />
</form>
</div>