Skip to content

Instantly share code, notes, and snippets.

@dompascal
Created December 6, 2013 17:48
Show Gist options
  • Save dompascal/7829126 to your computer and use it in GitHub Desktop.
Save dompascal/7829126 to your computer and use it in GitHub Desktop.
JS - Woocommerce shop bag widget toggle
// shopping bag dropdown toggle
$('.shopping-bag').hover(function() {
$('.dropdown')
.stop(true, true)
.animate({
height:"toggle",
opacity:"toggle"
},500);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment