Skip to content

Instantly share code, notes, and snippets.

@devhero
Created February 19, 2017 21:55
Show Gist options
  • Save devhero/5e125825bf07429354155a8dfd97f560 to your computer and use it in GitHub Desktop.
Save devhero/5e125825bf07429354155a8dfd97f560 to your computer and use it in GitHub Desktop.
$(function() {
var map = '#gmap-holder';
$(map).find('iframe').css('pointer-events', 'none');
$(map).click(function(e) {
$(this).find('iframe').css('pointer-events', 'all');
}).mouseleave(function(e) {
$(this).find('iframe').css('pointer-events', 'none');
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment