After user submits a form, I need to reset the form in existing browser window and pop up a another window with jsp. I am finally able to do this using Javascript. The problem I am having is that these actions happens simultenously. I need to reset the form first and then run javascript to pop the window.
Any helps would be appreciated.
p.s. I do not have to use javascript.
-
Javascript and JSP (1 messages)
- Posted by: Vipul Sagare
- Posted on: February 14 2001 15:58 EST
Threaded Messages (1)
- Javascript and JSP by Mathias Bogaert on February 15 2001 16:30 EST
-
Javascript and JSP[ Go to top ]
- Posted by: Mathias Bogaert
- Posted on: February 15 2001 16:30 EST
- in response to Vipul Sagare
Use setTimeOut(window.open(blah), 1000).
This causes the browser to wait one second before opening a new window. By than the form should have been reset.
Mathias
pathos@pandora.be