Skip to content

Instantly share code, notes, and snippets.

@fieldoffice
Created November 4, 2016 14:57
Show Gist options
  • Save fieldoffice/de55a586974d4aad3393bdc79dadbe19 to your computer and use it in GitHub Desktop.
Save fieldoffice/de55a586974d4aad3393bdc79dadbe19 to your computer and use it in GitHub Desktop.
Simple Tabs
/* TABS */
$('.tab-panel').hide();
$('.tab-panel:first').show();
$('.tabs li:first').addClass('active');
$('.tabs li a').click(function(){
$('.tabs li').removeClass('active');
$(this).parent().addClass('active');
var currentTab = $(this).attr('href');
$('.tab-panel').fadeOut(200);
$(currentTab).delay(200).fadeIn(400);
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment