Skip to content

Instantly share code, notes, and snippets.

@wickywills
Created August 28, 2019 08:08
Show Gist options
  • Save wickywills/90460b97cd99d1214caf188b546c3e00 to your computer and use it in GitHub Desktop.
Save wickywills/90460b97cd99d1214caf188b546c3e00 to your computer and use it in GitHub Desktop.
Allow a popup type element to be closed on body click. Also plays nice on iOS.
```
jQuery(document).on('click touchstart',function(e){
$miniCart = jQuery('.mini-cart');
if(!$miniCart.is(e.target) && $miniCart.has(e.target).length === 0)
$miniCart.hide();
});
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment