html multiple frames navigation

Posted by Amarsh on Stack Overflow See other posts from Stack Overflow or by Amarsh
Published on 2010-05-24T02:51:35Z Indexed on 2010/05/24 3:01 UTC
Read the original article Hit count: 406

Filed under:
|
|
|

Folks, I want to create a webpage with three panes (frameLeft, frameMiddle, frameRight)

  • The content on leftmost pane is a list from file list.html

  • Upon clicking on an item in the leftmost pane, it loads the corresponding html file (call it listLvl2.html) in the middle pane. This is also a list.

  • Clicking further on an item in the middle pane should load the corresponding html file in the third frame (lets call it content.html)

I have made an index.html file with three frames. frameLeft loads list.html. I have coded list.html so that every link opens in the target="frameMiddle" . This works well

The issue is opening content.html in frameRight. What should I put as the target in my listLvl2.html links so that they open in frameRight? I tried putting it as frameRight, but instead, it opens in a new window. I guess that is because for listLvl2.html , frameRight is not defined.

© Stack Overflow or respective owner

Related posts about html

Related posts about multiple