dmbware
11-08-2007, 08:26 PM
I am using the following code:
<script language="JavaScript">
<!--
function getBoxList ()
{
self.window.opener.location='BestBuyIDX.html';
self.opener.focus ();
window.close ();
}
//-->
</script>
The problem with this code, is that I click a link from an Iframe, that opens a new window that contains this code. When the user clicks on close window, its suppose to close the window and take the user to the bestbuy section of the web site... It instead loads the bestbuy page in the iframe. How do I point to reload over the entire page?
<script language="JavaScript">
<!--
function getBoxList ()
{
self.window.opener.location='BestBuyIDX.html';
self.opener.focus ();
window.close ();
}
//-->
</script>
The problem with this code, is that I click a link from an Iframe, that opens a new window that contains this code. When the user clicks on close window, its suppose to close the window and take the user to the bestbuy section of the web site... It instead loads the bestbuy page in the iframe. How do I point to reload over the entire page?