Set a target attribute on the anchor tags:
Code:
<li><a href="http://www.dynamicdrive.com/" target="myframe">Dynamic Drive</a></li>
<li><a href="http://www.dynamicdrive.com/style/" rel="ddsubmenuside1" target="myframe">CSS Library</a></li>
<li><a href="http://www.javascriptkit.com/jsref/" rel="ddsubmenuside2" target="myframe">JavaScript Reference</a></li>
<li><a href="http://www.javascriptkit.com/domref/" target="myframe">DOM Reference</a></li>
<li><a href="http://www.cssdrive.com" rel="ddsubmenuside3" target="myframe">CSS Drive</a></li>
<li><a href="http://www.codingforums.com/" style="border-bottom-width: 0" target="myframe">Coding Forums</a></li>
...just ensure that the value of the target attribute (which on my example is myframe) is the same as that of the frame's name:
Code:
<iframe name="myframe" src="about:blank;"></iframe>
Hope that helps.
Bookmarks