I have following forms:
<form name="google" method="post" action="http://google.com/"></form>
<form name="yahoo" method="post" action="http://yahoo.com" target="_blank"></form>
Is there any chance to submit these two forms with one single mouse click, e.g. with one submit button? jQuery solution isn't acceptable since the website I have doesn't use it so to load external lib for one single operation isn't reasonable.
Any chance to make it through pure Javascript?
Thanks in advance!