I'm using jquery tabs with no problems except that I would like to have separate divs for the list (tabs) and the content.
<div id="tabs">
<ul>
<li><a href="#articles">Articles</a></li>
<li><a href="#videos">Videos</a></li>
<li><a href="#photos">Photos</a></li>
</ul>
<div id="articles" class="bd">Lorem ipsum dolor sit amet,</div>
<div id="videos" class="bd">Lorem ipsum dolor sit amet,</div>
<div id="photos" class="bd">Lorem ipsum dolor sit amet,</div>
</div>
But what I would like to do is wrap the ul and the content in separate divs.
<div id="tabs">
<div class="hd">
<ul>
<li><a href="#articles">Articles</a></li>
<li><a href="#videos">Videos</a></li>
<li><a href="#photos">Photos</a></li>
</ul>
</div>
<div class="bd">
<div id="articles" class="bd">Lorem ipsum dolor sit amet,</div>
<div id="videos" class="bd">Lorem ipsum dolor sit amet,</div>
<div id="photos" class="bd">Lorem ipsum dolor sit amet,</div>
</div>
</div>
I've looks through the documentation but dont see a place to specify this. Any help would be greatly appreciated.