Advertisement
Guest User

Untitled

a guest
Sep 30th, 2014
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     var cartTimer;
  2.     $('.woo-menu-cart').hover(function(e) {
  3.         clearTimeout(this.cartTimer);
  4.         $('.cart-items').show();
  5.         console.log('hovered');
  6.     }, function(e) {
  7.         this.cartTimer = setTimeout("function() { $('.cart-items').hide() }", 2000);
  8.         console.log('out, ' + this.cartTimer);
  9.     });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement