Ваши селекторы
<ul class="toggle_links">
<li><a href="#" rel="tab1">Open Close tab1</li>
<li><a href="#" rel="tab2">Open Close tab2</li>
<li><a href="#" rel="tab3">Open Close tab3</li>
<li><a href="#" rel="tab4">Open Close tab4</li>
</ul>
Ваши Div
<div class="tab_containers">
<div id="tab1">This is tab 1</div>
</div>
Javascript:
$(document).ready(function(){
$('.tab_containers div').hide(); //Hide all the containers
//Bind the links
$('.toggle_links li a').click(function(){
var tabToOpen = $(this).attr('rel');
$(this).addClass('active');
if($('#' + tabToOpen).css('display') != '')
{
//Its already open.
return;
}
$('.toggle_links div').fadeout(); //hide them all
//Open it up!
$('#' . tabToOpen).slidein();
//Return false to prevent the links from there default method.
return false;
});
});
это то, что вы имеете в виду?