Click to See Complete Forum and Search --> : Can't load page into frame window


morgo
10-06-2005, 04:03 PM
I am trying to load an external website into a frame...the page will only load into it's own window...and then the back button will only return you to that same page...not mine...is there a way to work around this? :)

konithomimo
10-06-2005, 08:03 PM
Create a frame with a name and an ID (for my example testframe). Then if you want to open the page via a link just use:

<a href="http://www.yahoo.com" onClick="document.getElementById('testframe').location.href">Click here</a>

or you can use an iframe (testiframe):

<a href="http://www.yahoo.com" onClick="document.getElementById('testiframe').src">Click here</a>