#wrapper div {<br>
display:none;<br>
}<br>
#wrapper.tab1 div.tab1 {<br>
display:block;<br>
width:100%;<br>
}<br>
#wrapper.tab2 div.tab2 {<br>
display:block;<br>
width:100%;<br>
}<br>
#wrapper.tab3 div.tab3 {<br>
display:block;<br>
width:100%;<br>
}<br>
#wrapper.tab1 a.tab1 {<br>
color: black;<br>
cursor: default;<br>
font-weight: bold;<br>
text-decoration: none;<br>
}<br>
#wrapper.tab2 a.tab2 {<br>
color: black;<br>
cursor: default;<br>
font-weight: bold;<br>
text-decoration: none;<br>
}<br>
#wrapper.tab3 a.tab3 {<br>
color: black;<br>
cursor: default;<br>
font-weight: bold;<br>
text-decoration: none;<br>
}<br>
<div id="wrapper" class="tab1"><br>
<a href="#" class="tab1">Вкладка 1</a><br>
<a href="#" class="tab2">Вкладка 2</a><br>
<a href="#" class="tab3">Вкладка 3</a><br>
<br>
<div class="tab1">Содержимое 1</div><br>
<div class="tab2">Содержимое 2</div><br>
<div class="tab3">Содержимое 3</div><br>
</div><br>
$('#wrapper a').click(function() {<br>
if ($(this).attr('class') != $('#wrapper').attr('class') ) {<br>
$('#wrapper').attr('class',$(this).attr('class'));<br>
}<br>
});<br>
<br>
href="javascript:;"?
#wrapper div.tab_item { display:none; }
<dl class="tabs">
<dt class="active">Вкладка 1</dt>
<dd class="active"><div>Содержимое 1</div></dd>
<dt>Вкладка 2</dt>
<dd><div>Содержимое 2</div></dd>
</dl>
<script type="text/javascript">
$(function(){
$("dl.tabs dt").click(function(){
$(this)
.siblings().removeClass("active").end()
.next("dd").andSelf().addClass("active");
});
});
</script>
<div class="tabbable"> <ul class="nav nav-tabs"> <li class="active"><a href="#1" data-toggle="tab">Section 1</a></li> <li><a href="#2" data-toggle="tab">Section 2</a></li> </ul> <div class="tab-content"> <div class="tab-pane active" id="1"> <p>I'm in Section 1.</p> </div> <div class="tab-pane" id="2"> <p>Howdy, I'm in Section 2.</p> </div> </div> </div>
#wrapper div {
display:none;
}
#wrapper a.active {
color: black;
cursor: default;
font-weight: bold;
text-decoration: none;
}
#wrapper div.active {
display:block;
width:100%;
}
<div id="wrapper">
<a href="#" id="tab1" class="active">Вкладка 1</a>
<a href="#" id="tab2">Вкладка 2</a>
<a href="#" id="tab3">Вкладка 3</a>
<div id="con_tab1" class="active">Содержимое 1</div>
<div id="con_tab2">Содержимое 2</div>
<div id="con_tab3">Содержимое 3</div>
</div>
$('#wrapper a').click(function() {
var click_id=$(this).attr('id');
if (click_id != $('#wrapper a.active').attr('id') ) {
$('#wrapper a').removeClass('active');
$(this).addClass('active');
$('#wrapper div').removeClass('active');
$('#con_' + click_id).addClass('active');
}
});