Skip to content

Instantly share code, notes, and snippets.

@skvggor
Last active December 21, 2015 09:59
Show Gist options
  • Save skvggor/6289189 to your computer and use it in GitHub Desktop.
Save skvggor/6289189 to your computer and use it in GitHub Desktop.
facebook
$(document).ready(function() {
var tab, nav;
nav = $('.main-nav a');
_ativarTab = function(e) {
tab = $(this).attr('href');
$('section').removeClass('is-active');
$(tab).addClass('is-active');
e.preventDefault();
};
nav.on('click', _ativarTab);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment