Skip to content

Instantly share code, notes, and snippets.

@ozknozsrt
Created November 4, 2016 09:02
Show Gist options
  • Save ozknozsrt/539c8a3fe72930f7b5560cac2c973c65 to your computer and use it in GitHub Desktop.
Save ozknozsrt/539c8a3fe72930f7b5560cac2c973c65 to your computer and use it in GitHub Desktop.
Map Iframe Click Pointer Events
$(document).ready(function() {
$('.map').click(function () {
$('.map iframe').css("pointer-events", "auto");
});
$( ".map" ).mouseleave(function() {
$('.map iframe').css("pointer-events", "none");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment