You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Forum user: stefanie

Basic information

Registered Jun 16, 2009
Last login Jun 17, 2009
Forum posts 2
Direct URL http://www.flowplayer.org/forum/users/11900

Latest forum posts

Posts:

Registered:

» » div elements inside tabs

Posted: Jun 17, 2009

Using paragraphs is not an option for me. Currently I'm thinking to build a new tab plugin, because I haven't found one using jQuery, that is fitting my needs.

Posts:

Registered:

div elements inside tabs

Posted: Jun 16, 2009

First hello to everyone.

I'm trying to use the jQuery tabs with div elements inside the tabs. Currently I'm not getting this to work. The tabs containing div elements are empty.
I've created a test based on the simple tab example:

<div class="panes">
<div class="pages">First tab content. Tab contents are called "panes"</div>

<div class="pages">
<div class="dcontent">
<h1>Second tab content</h1>
<p>The content is empty</p>
</div>
</div>
<div class="pages">Third tab content</div>
</div>

<script>
$(function() {
$("ul.tabs").tabs("div.panes > div.pages");
});
</script>

Does someone know, how to work with div elements inside tabs?