Advertisement
maximus87

Untitled

Jul 6th, 2020
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. var url = window.location.href;
  2. jQuery('.main_nav li').each(function(){
  3. var menu_item = jQuery(this).find('a').attr('href');
  4. if (menu_item == url) {
  5. jQuery(menu_item).parent(li).addClass('active');
  6. console.log(menu_item);
  7. }
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement