Click to See Complete Forum and Search --> : link opening page in frame of another page


sili
04-27-2003, 10:15 PM
I wonder if there's a way to have a link opening a page inside a frame of another page. Example, link is on page1 of browser_window1, and when link is clicked, it opens page in frame1 of page2 at the browser_window1.
Any help will be greatly appreciated! Thank you!

sili
04-28-2003, 09:45 AM
I have already tried that. It only gives me the frame in a popup window.... not the whole page2 with frame....

khalidali63
04-28-2003, 09:59 AM
If you are trying to access frame in 2 separate windows,then one of the frameset windows must have been opened using
var newWin = window.open("secondFrameset.html",newWin");
after that you can access newWin.frames['frameName'].src='url';
and if you are trying to access to completely independent windows,there is no way you can do that using JavaScript.