Skip to content

Instantly share code, notes, and snippets.

@alegut
Created July 5, 2018 11:49
Show Gist options
  • Select an option

  • Save alegut/dd19e1e1320dc5f0d0f0184710b164ea to your computer and use it in GitHub Desktop.

Select an option

Save alegut/dd19e1e1320dc5f0d0f0184710b164ea to your computer and use it in GitHub Desktop.
Hide menu on click outside
$(window).click(function () {
$("body").click(function () {
$(".header__cart-products").fadeOut('slow');
});
$(".header__cart-products, .header__cart-btn").click(function (e) {
e.stopPropagation();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment