The tree menu is most commonly used with frames. The tree menu is added to one frame and the links are set to open
in another frame.
When defining frames each frame should be given a name ( eg. name="content" ). In this demo we construct
a page with a left and a right frame like this:-
<frameset cols="280,*">
<frame name="tree" src="leftframe.htm">
<frame name="content" src="rightframe.htm">
</frameset>
The Tree is contained in the left frame and all the nodes are set to open the links in the right hand frame named
'content'. It is important to note that frame names are case sensitive. This means that 'content'
is not the same 'Content' or 'CONTENT'.
To view the frame demo click here »
|