boroarke
05-15-2003, 05:34 PM
I need some help with opening a link in an already open window. Here is what I have so far. On my main page (index.htm), I have a link and when you click on the link a new smaller window pops up on top of my main page (index.htm). The new window has further options the user can click on. The html I used to open this little window is as follows:
<a href="D:\doityourself\kits.htm/" onclick="window.open (this.href, 'child', 'height=500,width=495'); return false""style="color:#223767; font-weight:700">
Do-It-Yourself Kits</a>
When the user clicks on a link from the popup window, I would like that link to open up in the same window my main page (index.htm) was in. I don't want the link to open a new window, It needs to open in the already opened window index.htm was in. No matter what I do, I can not get the link to open up in this window. It either opens up in its own window or opens up in the small popup window. I do not want this to happen because I want the popup window to stay on the screen. Does that make sense? Can anyone tell me what I am doing wrong or what html or script I need to enter for the link to make it open up in the window that is already open on the screen? Sorry if this is long winded.
Thanks in advance for all help.
Bryan
<a href="D:\doityourself\kits.htm/" onclick="window.open (this.href, 'child', 'height=500,width=495'); return false""style="color:#223767; font-weight:700">
Do-It-Yourself Kits</a>
When the user clicks on a link from the popup window, I would like that link to open up in the same window my main page (index.htm) was in. I don't want the link to open a new window, It needs to open in the already opened window index.htm was in. No matter what I do, I can not get the link to open up in this window. It either opens up in its own window or opens up in the small popup window. I do not want this to happen because I want the popup window to stay on the screen. Does that make sense? Can anyone tell me what I am doing wrong or what html or script I need to enter for the link to make it open up in the window that is already open on the screen? Sorry if this is long winded.
Thanks in advance for all help.
Bryan