Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

target with pop-up menu

Status
Not open for further replies.

laring

Programmer
Sep 26, 2002
2
US
I'm building a site with a top frame (for the menu) and a body frame. How do I get my links from the menu to target the pages into the body frame. I can't right click the target area, and it only gives me the 4 main choices.
 
In your frame src, be sure to name your frames.

Say: top.html is your top menu ( frame src="top.html" name="top")
main.html is your main display area. ( frame src="main.html" name="main" )

So targeting any links in top.html will look like

<a href=&quot;link1.html&quot; target=&quot;main&quot;>This will show link 1</a>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top