Skip to content

Instantly share code, notes, and snippets.

@muks999
Last active June 14, 2018 00:56
Show Gist options
  • Save muks999/652a3b50502aae0a4577885112f07f6e to your computer and use it in GitHub Desktop.
Save muks999/652a3b50502aae0a4577885112f07f6e to your computer and use it in GitHub Desktop.
Tabs Jquery
$('.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');
});
@muks999
Copy link
Author

muks999 commented Jun 14, 2018

ПРОСТЫЕ ТАБЫ

$('.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');
});

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment