PDA

View Full Version : How to close window and redirect main window?


nexus851
11-15-2006, 07:14 AM
I have a link that opens a popup window telling users to register before they can listen to the vbradio with a close button on the button of the popup. How can i close the popup window and then redirect the main page to goto /forum/register.php ? i think it requires java? dunno, please help..

CyberAlien
11-15-2006, 09:31 PM
Try this:onclick="opener.document.location.href='/forum/register.php'; window.close();"

nexus851
11-16-2006, 03:10 AM
Try this:onclick="opener.document.location.href='/forum/register.php'; window.close();"

THAT line DIDNT work... because there isnt no "close" link to close.. any advice?

CyberAlien
11-16-2006, 06:40 AM
That was a part of code for onclick event on "close" link. Here is full code:<a href="javascript:void(0);" onclick="opener.document.location.href='/forum/register.php'; window.close();">close</a>