PDA

Click to See Complete Forum and Search --> : Frames(HTML newbie)[Resolved]


ProgrammerJon
Mar 9th, 2003, 10:40 PM
If I have two frames, FrameA and FrameB.
I have a link in FrameA and I want the page to load in FrameB.
How do I do this?

Rick Bull
Mar 10th, 2003, 05:10 AM
Add the target attribute to links, with it's value as the name of the frame you want to target, e.g. <a href="page.htm" target="frameB">Open in FrameB</a>

ProgrammerJon
Mar 10th, 2003, 09:52 AM
Thanks!:D