Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to create a 10 second popup 1

Status
Not open for further replies.

DebHanleyRI

Programmer
Jun 18, 2002
35
0
0
US
In my application, closing a popup window causes other activity to take place in the background.

Is it possible to display another popup for 10 seconds notifying the user to just sit tight while my others tasks are completing?
 
Thank you. I do need to add to my inquiry. How do I create the second popup from the 1st popup when quitting out of the 1st popup?
 
Code:
function dothis() {
some code to create another pop-up goes here;

self.close()
}

<body onLoad=setTimeout(&quot;dothis&quot;, 10000)>
--------------------------------------------------
Goals are dreams with deadlines
-------------------------------------
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top