Advertisement
Igor150195

Untitled

Apr 19th, 2021
1,020
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $('.top-brands ul').parent().each(function() {
  2.     var o = $(this);
  3.     var s = o.find('>ul');
  4.     var l = o.parents('ul').length;
  5.     var k = false;
  6.  
  7.     o.hover(
  8.         function() {
  9.             o.find('>a').addClass('active').removeClass('normal');
  10.             for (i = $('.top-brands ul').length; i >= 0; i--) {
  11.                 o.parent().find('>li').not(o).find('ul').eq(i).hide();
  12.             }
  13.             k = true;
  14.  
  15.             s.show();
  16.         },
  17.         function() {
  18.             o.find('>a').removeClass('active').addClass('normal');
  19.             k = false;
  20.             window.setTimeout(function() {
  21.                 if (!k) {
  22.                     s.hide()
  23.                 }
  24.             }, 100);
  25.         }
  26.     );
  27. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement