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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Loading two frames???

Status
Not open for further replies.

parallon

MIS
Dec 27, 2002
103
US
Not too sure how to ask this. I have searched the other posts, but do not know what to search for. I have 4 frames (upper, left, right, center), and the top and right never change. I am trying to have the left frame change based on what is in the center frame. In other words, lets say that the center frame loads a product page. I want to show links or menus to other features of that product in the left frame. I just don't know how to load the links in the left menu when the center frame loads.

Any help would be greatly appreciated.

Parallon

"I used to think that the more that you knew, the farther you would go, then I realized that the more that you know, the more they use you."

-Me
 
I grabbed this from
Code:
<HTML>
<HEAD>

<TITLE>top left</TITLE>


</HEAD>
<BODY BGCOLOR=white>
<A HREF="topLeft.html" onclick="parent.frames[1].location='lightGreen.html';parent.frames[2].location='darkGreen.html';">Turn Green</A><P>

<A HREF="topLeft.html" onclick="parent.frames[1].location='lightBlue.html';parent.frames[2].location='darkBlue.html';">Turn Blue</A><P>
</BODY>
</HTML>

You should be able to play about with it and do what you want

[Peace][Pipe]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top