Hi, I'm trying to use UI tabs but it's not working ( yet :)
I have jQuery 1.3.2 and jQuery UI 1.7.2 (full) included.
Then I have a basic tab setup:
<div id="tabs">
<ul class="menu">
<li><a href="#tab-latest">Latest 10</a></li>
<li><a href="#tab-performances">Performances</a></li>
<li><a href="#tab-vlogs">Vlogs</a></li>
<li><a href="#tab-commercials">Commercials</a></li>
<li><a href="#tab-webcams">Webcams</a></li>
</ul>
<div id="#tab-latest" class="video-panel">
...
</div>
<div id="#tab-performances" class="video-panel">
...
</div>
<div id="#tab-vlogs" class="video-panel">
...
</div>
<div id="#tab-commercials" class="video-panel">
...
</div>
<div id="#tab-webcams" class="video-panel">
...
</div>
</div>
In initiating the tabs with: $("#tabs > ul").tabs();
Now the strange thing is that the page does actually add the classes:
"ui-tabs ui-widget ui-widget-content ui-corner-all" to the UL, but
that's it. It doesn't add anything to the panels and it doesn't work.
Wat am I doing wrong?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---