Guest User

Untitled

a guest
Jul 17th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. //jQuery Auto-selected Sub Menu
  2. $(function() {
  3. $('a.nav').click(function() {
  4. $(this).siblings('.sub-menu').slideToggle();
  5. })
  6. $('a.nav.active').siblings('.sub-menu').show();
  7. jQuery.each($('a.nav.active').siblings('.sub-menu').find('li.sub-item a'), function() {
  8. if ($(this).attr("href") == window.location.pathname) {
  9. $(this).addClass("active");
  10. }
  11. });
  12. });
Add Comment
Please, Sign In to add comment