I have from which will be submited to iframe:
<form id="myform" action="http://example.com/" target="myiframe">
//some fields
</form>
<iframe name="myiframe" src=""></iframe>
Then on some point I submit this form with javascript:
<script type="text/javascript">
document.getElementById("myform").submit();
</script>
How to capture response after .submit()?
I can't use jQuery and Ajax call.