text link from within 1 tab to another
Within a group of tabs how do I create a text link from 1 tab to another?
I have tried the following:
-
<div id="stallion" style=""> <!--Stallion Tabs -->
<ul style="margin-left:10px;">
<li class="tabs"><a href="#stallionLanding">tab 1</a></li>
<li class="tabs"><a href="#stallionVideo">tab 2</a></li>
</ul>
</div>
<!--Begin Stallion Landing Info -->
<div id="stallionLanding">
<a href=http://thedomain.com/horsepage.html#stallionVideo>test1</a>
<a href=http://thedomain.com/horsepage.html title=stallionVideo>test2</a>
</div>
<!--End Stallion Landing Info -->
<!--Begin Stallion Video -->
<div id="stallionVideo">
Some content
</div>
<!--End Stallion Landing Info -->
I do seem to be able to link to the correct tab from outside the page with
http://somedomain.com/somefile.html#stallionVideo
but not from within a tab to another tab...
Any help?