Guest_imported
New member
- Jan 1, 1970
- 0
here's my situation:
I have one page with a form. When this form is submitted, I open a "progress" window which simply contains a gif animation. The page with the form then goes on to display the results of a query. This query is built from the form. My problem is that I can't figure out how to close the progress window after the query has finished.
here is my code to open the progress window:
var popit = open('waiting.html','waiting','width=400,height=300')
SO if I wanted to close the popup from the FORM page, I'd simply call popit.close(); The problem is that popit isn't accessible to the query results page. SO could anyone please tell me how to close the progress window after the query results page has loaded? Thanks so much for your responses.
I have one page with a form. When this form is submitted, I open a "progress" window which simply contains a gif animation. The page with the form then goes on to display the results of a query. This query is built from the form. My problem is that I can't figure out how to close the progress window after the query has finished.
here is my code to open the progress window:
var popit = open('waiting.html','waiting','width=400,height=300')
SO if I wanted to close the popup from the FORM page, I'd simply call popit.close(); The problem is that popit isn't accessible to the query results page. SO could anyone please tell me how to close the progress window after the query results page has loaded? Thanks so much for your responses.