Forum Moderators: open
1. User starts IE and visits widgets.com/green_info.html (call this window1)
2. In a seperate browser window (window2) the user visits widgetsguide.com. On this page is a link to widgets.com/blue_info.html
What I want to happen is for this link to change the page of window1
If I have <a href="..widgets.com/blue_info.html">blue widgets</a> that will open up the page in that window (window2)
If I have target="_blank" it will open up a new window
How can I set this so that the page in window1 is changed instead?
By creating the new windows with an assigned name, links in window2 can use target="window1" (or whatever name yu gave that window) as an attribute. If by any chance the user has already closed window1, then a click on the link will recreate it.