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

javascript - send multi-forms (See related posts)

<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.

You need to create an account or log in to post comments to this site.


Click here to browse all 5140 code snippets

Related Posts