All of the jQuery Tab systems I've encountered use a <ul> with links, which is separate from the tab content div. Is there a way to code the following (I'm using pseudo code here)...
<div class="tab"><a href="#tab1">Tab1</a></div>
<div class="tab-content" id="tab1">Content for Tab 1 here .......</div>
<div class="tab"><a href="#tab2">Tab2</a></div>
<div class="tab-content" id="tab2">Content for Tab 2 here .......</div>
Layout would look like the following:
[Tab1] [Tab2] [Tab3] [Tab4]
[Tab contents is fixed here below tabs]