I have a main page, user clicks on a link, a new browser window opens. Now the user wants to click on link within that new window to close the window and link to a new page on the main page..
I have a main page, user clicks on a link, a new browser window opens. Now the user wants to click on link within that new window to close the window and link to a new page on the main page..
you could try something like this:
and use this as your link:Code:<script language="javascript" type="text/javascript"> <!-- function closeandrefresh(link) { window.opener.location = link; window.close(); } --> </script>
this should close the popup window and open the link in the original windowHTML Code:<a href="someurl.html" onclick="closeandrefresh(this.href);return false">someurl.html</a>
-aseaofflames
i haven't tested it so tell me what happens
double post
Bookmarks