I want to submit a single 'form' to 5 different pages. for 3 submissions i need to submit and open popup window. for 2 submissions i need to generate csv files from two different files (i have php code ready for csv. I just need to submit form data to both files ) . how i can do this?
Can you able to use Jquery Tabs? So instead of using pages tabs.so single page,n number of tabs, one submit.
save this as html page and try it... This simulate GET method. <form onsubmit="return foo()"> <input id="param1" type="text" value="xxx"> <input type="submit" value="submit"> </form> <script> function foo(){ var paramVal=document.getElementById("param1").value window.open("http://www.google.com?param1="+paramVal) window.open("http://www.yahoo.com?param2="+paramVal) return false } </script> Code (markup):