Click to See Complete Forum and Search --> : Closing main window once popup launched


HackerX
11-21-2003, 06:59 PM
Hi, I am having trouble findind a script to close the main window once a popup is launched. Does anyone know of a script like this? I think its something like the following to reference it but I'm not sure and I don't know how to add a function to close the main window then, if anyone knows a complete script for this please help, thanks.


<a href="example.htm" onClick="opener.location.href='example.htm';return false">example.htm</a>

Khalid Ali
11-21-2003, 07:03 PM
add the following code in the event call or in a function and then call that function whenver or wherever to close the parent window.

top.opener.close();

HackerX
11-21-2003, 07:17 PM
um so would something like this work?

<BODY onLoad="opener.location.href='mypage.html'; "top.opener.close(mypage.html);">

HackerX
11-22-2003, 02:49 PM
sry, but I still need help with this.

fredmv
11-22-2003, 04:12 PM
<body onload="opener.location.href='mypage.html'; self.close();">