Last active
June 14, 2018 00:56
-
-
Save muks999/652a3b50502aae0a4577885112f07f6e to your computer and use it in GitHub Desktop.
Tabs Jquery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.tabs-list li').click(function() { | |
var tabName = $(this).attr('show-tab'); | |
$(this).addClass('active').siblings().removeClass('active'); | |
$('.tabs-content .' + tabName).addClass('active').siblings().removeClass('active'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ПРОСТЫЕ ТАБЫ
$('.accessories_nav li').click(function() {
var tabName = $(this).attr('show-tab');
$(this).addClass('active').siblings().removeClass('active');
$('.accessories_tab_wrap .' + tabName).addClass('active').siblings().removeClass('active');
});