2 /* Toggle hidden box on click. */
3 $("nav a[data-box]").each(function() {
4 $("#" + $(this).attr("data-box")).hide();
6 $(this).click(function(e) {
8 var showing = $(this).hasClass("active");
9 $("nav .active").each(function() {
10 $(this).removeClass("active");
11 $("#" + $(this).attr("data-box")).hide();
14 $(this).addClass("active");
15 $("#" + $(this).attr("data-box")).show();