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

Forcing "Open Browser Window" to open on top. 1

Status
Not open for further replies.

CTekMedia

Programmer
Joined
Oct 5, 2001
Messages
634
Location
US
Hello everyone. I have several pages on a site where I have links that have the "open browser window" behavior attached to them. I have also given these links a window name so that they all open into the same window.

Click on the top photo images at
Unfortunately, after the first image is clicked, subsequent loads into the window are hidden by the parent window. Anyone know how to force these "pop up" windows to pop to the top each time?

Tks

BT
 
Hi, here's what you need to add (in red)

function MM_openBrWindow(theURL,winName,features) { //v2.0
newpop=window.open(theURL,winName,features);
newpop.focus();
}

this script is from your page, i tried it and it works.

Hope it'll help ;-) Have Fun...

Sharky99 >(::O>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top