Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $('.top-brands ul').parent().each(function() {
- var o = $(this);
- var s = o.find('>ul');
- var l = o.parents('ul').length;
- var k = false;
- o.hover(
- function() {
- o.find('>a').addClass('active').removeClass('normal');
- for (i = $('.top-brands ul').length; i >= 0; i--) {
- o.parent().find('>li').not(o).find('ul').eq(i).hide();
- }
- k = true;
- s.show();
- },
- function() {
- o.find('>a').removeClass('active').addClass('normal');
- k = false;
- window.setTimeout(function() {
- if (!k) {
- s.hide()
- }
- }, 100);
- }
- );
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement