Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

javascript - send multi-forms

<script type="text/javascript">
function sendcopy(el) {
	el.action = '/cgi-bin/action2.pl'
	el.submit()
	el.action = '/cgi-bin/action1.pl'
	el.submit()
}
</script>



//<form id="myform" method="post" action="" onsubmit="sendcopy(this)">
//-------------------------------------------------------------------


//However, this seems NOT to work with Opera 7 and Netscape 4. They only send the form to action1. Mozilla and IE are behaving as I hoped they would, and are calling both.
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS