Advertisement
maximus87

Untitled

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