Frames Into Non Frames

liunx

Guest
Need to convert a 2 Frame Page into a Page with No Frames when a link is clicked on the left frame.<br />
How do I do this?<!--content-->so you want to take the frame syou have and make it so it is not frames? not sure I follow.<br />
<br />
but if you click on a lnik in the left frame and make it load in the same window or new window just change the target value.<br />
<br />
target="_blank" = new window<br />
<br />
<br />
or just take the target out.<!--content-->Create a new page that has the required information on it (both page info).<br />
<br />
Link to that new html document using the "_top" as your target value.<br />
<br />
I don't know of any HTML or Javascript solution that would actually combine two pages into one at the state of a click. That would be a server side possibility perhaps?<!--content-->The _top worked in the target ..<br />
Thanks!!<!--content-->if you are going o use target="_top" then you don't even need it in there. just take out the target all together.<!--content-->Doesnt work when removed.Maybe I am doing something different.<!--content-->if you just have a ordinary link like this<br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/"link.html" target="_top">link</a><br />
<br />
then all you need is<br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/"link.html">link</a><br />
<br />
that will open up in the same page the user is at, at the point he click on it.<!--content-->I thought leaving out the target would make the linked page open into the current frame ???<br />
<br />
"_self" and leaving it out would be equal.<!--content-->well from my understanding he wanted to load it in the same page and not into a frame. sorry if I misunderstood....<!--content-->Ah... maybe I misunderstood then... um... oh well :)<!--content-->
 
Back
Top