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?
Printable View
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?
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>
Thanks!:D