Difference between revisions of "Template:Northeastern Boston/Javascript"

 
(3 intermediate revisions by the same user not shown)
Line 8: Line 8:
 
var arrow = $(this).find('.tab-container__arrow')[0];
 
var arrow = $(this).find('.tab-container__arrow')[0];
 
$(arrow).toggleClass('flip-vertical');
 
$(arrow).toggleClass('flip-vertical');
 +
});
 +
 +
$('.sub-nav__parent').on("click", function() {
 +
// Toggle active navbar
 +
//$('.active').toggleClass('active');
 +
 +
// Toggle active of current nav element
 +
//var link = $(this).children()[0];
 +
//$(link).toggleClass('active');
 +
 +
// Toggle hiding of children nav elements
 +
var sibling = $(this).siblings()[0];
 +
$(sibling).toggleClass('hidden');
 +
 +
var arrow = $(this).find('.nav-container__arrow')[0];
 +
$(arrow).toggleClass('flip-vertical');
 +
});
 +
 +
$('.minimal-dropdown__arrow').on("click", function() {
 +
$(this).toggleClass('fa-flipped-arrow');
 +
$(this).parent().parent().find('.minimal-dropdown__content').toggleClass('hidden');
 
});
 
});
  
 
});
 
});
 +
 +
 
</script>
 
</script>
 
</html>
 
</html>

Latest revision as of 00:46, 18 September 2015