hi.. i want to redirect the page to the 2nd tab, but i dont have any idea how to do it.
this is the sample codes..
all i want to do is when the 1st tab comes out, i want to put a hyperlink to the 2nd tab.. is that possible?.. really thanks on advance.
this is the sample codes..
Code:
<div id="TabbedPanels1" class="TabbedPanels">
<ul class="TabbedPanelsTabGroup">
<li class="TabbedPanelsTab" tabindex="0">Tab 1</li>
<li class="TabbedPanelsTab" tabindex="0">Tab 2</li>
</ul>
<div class="TabbedPanelsContentGroup">
<div class="TabbedPanelsContent"><a href="Tab 2">this is Tab 1, click to go tab 2</a></div>
<div class="TabbedPanelsContent"><a href="Tab 1">this is Tab 2, click to go tab 1</a></div>
</div>
</div>
Comment