Created
November 4, 2016 14:57
-
-
Save fieldoffice/de55a586974d4aad3393bdc79dadbe19 to your computer and use it in GitHub Desktop.
Simple Tabs
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 */ | |
$('.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