Dec 4, 2003 #1 natedeia Technical User Joined May 8, 2001 Messages 365 Location US Is there a way to set up a site the you type in the (example)http://www.something.com/3435.html (the 3455 is popup file)which will take you to the home page http://www.something.com and then make the popup window appear? thanks in advance!
Is there a way to set up a site the you type in the (example)http://www.something.com/3435.html (the 3455 is popup file)which will take you to the home page http://www.something.com and then make the popup window appear? thanks in advance!
Dec 4, 2003 #2 deecee Technical User Joined Aug 25, 2001 Messages 1,678 Location US huh? not quite clear <Signature> Sometimes the Answer You Are LOOKING for can be FOUND BY SEARCHING THE FAQ'S @&%$*#!!! </Signature> Upvote 0 Downvote
huh? not quite clear <Signature> Sometimes the Answer You Are LOOKING for can be FOUND BY SEARCHING THE FAQ'S @&%$*#!!! </Signature>
Dec 4, 2003 #3 gizzy17 Vendor Joined Nov 6, 2003 Messages 141 Location US You could use script to check if the window was opened by another page. If it wasn't, you could open the home page in a new window. Would this work? Code: <body onload="if(!opener) window.open("[URL unfurl="true"]http://www.something.com","");>[/URL] Upvote 0 Downvote
You could use script to check if the window was opened by another page. If it wasn't, you could open the home page in a new window. Would this work? Code: <body onload="if(!opener) window.open("[URL unfurl="true"]http://www.something.com","");>[/URL]
Dec 4, 2003 Thread starter #4 natedeia Technical User Joined May 8, 2001 Messages 365 Location US i will try it, thanks! Upvote 0 Downvote