Links

Lists

Latest Updates

Ruby On Rails List
Python list
Advanced Java
The JavaScript List
Apache Users
Full Disclosure
Linux Security

Search the archives!


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Javascript] automatic form submission (solved)


  • From: innerlab at hotmail.com (Innerlab)
  • Subject: [Javascript] automatic form submission (solved)
  • Date: Thu Sep 23 15:51:05 2004

What was happening is that I was opening new window and right after submitting the form to that window.

<script type="text/javascript">WinPop();Document.MyForm.submit();</script>

But I guess the submission got sent before the window opened. So I moved the call to the WinPop() function up in the document, and
it worked. Thanks for replying.