Skip to content

Instantly share code, notes, and snippets.

@jxpx777
Created November 27, 2013 14:58
Show Gist options
  • Save jxpx777/7677073 to your computer and use it in GitHub Desktop.
Save jxpx777/7677073 to your computer and use it in GitHub Desktop.
$("#sections .panel.section").hide().first().show();
$("li.highlight a").click(function(event) {
event.preventDefault();
var target = $(event.currentTarget.getAttribute("href"));
if (target.is(":visible")) return;
$("#sections .panel.section:visible").children().fadeOut("fast", function(){
$("#sections .panel.section").hide();
target.show().children().fadeIn("fast");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment