Hello,
I'm wondering if it's possible to navigate Tabs from within an
accordion using an HTML structure like the one below...
<div id="accordian">
<h3><a href="#">First set of links</a></h3>
<div>
<a href="#tabs-1">Navigate to '#tabs-1'</a>
</div>
<h3><a href="#">Second set of links</a></h3>
<div>
<a href="#tabs-2">Navigate to '#tabs-2'</a>
<a href="#tabs-3">Navigate to '#tabs-3'</a>
<a href="#tabs-4">Navigate to '#tabs-4'</a>
</div>
</div>
<div id="tabs-1"></div>
<div id="tabs-2"></div>
<div id="tabs-3"></div>
<div id="tabs-4"></div>
The above won't work as the tab links have to be within an unordered
list that is the first child of the DIV upon which tabs was called.
What's a practical way of achieving tab navigation from within an
accordion?
Thanks,
Nikola
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---