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!

Bring window to front

Status
Not open for further replies.

michelledebeer

Programmer
Oct 26, 2001
22
0
0
SE
I have one main-window that opens a window named "myWindow".

If you click in the main-window, myWindow is hidden behind it.

Can I bring myWindow on top of the main-window, using a link?

My process:
function checkWindowOpen() {
if (myWindow == open) {
bringToFront
}
}

Any thoughts?
// Michelle
 
Here:

function checkWindowOpen(){
myWindow.focus();
}

Rick
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top