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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Multiple window question, please take a look

Status
Not open for further replies.

areznik

Programmer
Aug 7, 2002
25
0
0
US
Ok, here it goes:
I have a main window that opens another(may be multiple) window-frame. Now, when i press a refresh button in the main window for one of the frames that i opened, the corresponding frame gets refreshed.(i know which frame i need to refresh, there is a list box in the main window)

The big question is how do i bring the refreshed frame to the front? in other words, how do i make it active?

thanks in advance,
alex
 
if you know the name of the window you opened as in:
var x = window.open(blah blah);

then do:
x.focus(); after your frame refresh

HTH, Jessica [ponytails2]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top