I have a form which POSTs data to a hidden <iframe> to prevent the page from changing. However I would like the Save button to perform two consecutive submit()s, one after the other.
<form name="updatedocform" id="updatedocform" method="post" action="http://foo.bar" enctype="multipart/form-data" target="hiddenframe">
...
<input type="submit" onclick="save(); return false;" value="Save" />
</form>
<iframe name="hiddenframe" id="hiddenframe"></iframe>
JavaScript:
function save() {
document.updatedocform.submit();
// change some form values here
// alert("paused"); // if this alert is here, everything works fine
document.updatedocform.submit();
}
However the second submit() is being called before the first one is finished loading. Is there a way to make the second submit wait for the first one to finish?
I could use a setTimeout() but I'd like a cleaner solution that doesn't depend on the speed of the network.