I am trying to implement something quite simple, I want to have a tab menu, with submenu as anchor in tabs, let say :
<div id="tabs">
<ul>
<li><a href="file1.html">Nunc tincidunt</a>
<ul>
<li><a href="file1.html#anchor1">Et perditur</a></li>
<li><a href="file1.html#anchor2">Proin elit arcu</a></li>
</li>
<li><a href="file2.html">Proin dolor</a></li>
<li><a href="file3.html">Aenean lacinia</a></li>
</ul>
</div>
I can easily switch tabs on the top level , but any attempts to access the file#anchor link failed, the best I could do was to actually open the right tab, but not go to the anchor.
Any hint ? Working example ?