Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sarachisholm/e67c04cfa6eb3bf67801650c2668d086 to your computer and use it in GitHub Desktop.
Save sarachisholm/e67c04cfa6eb3bf67801650c2668d086 to your computer and use it in GitHub Desktop.
function openCart() {
$('.cart').addClass('js-active');
}
function closeCart() {
$('.cart .btn--close').click(function () {
$('.cart').removeClass('js-active');
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment