Skip to content

Instantly share code, notes, and snippets.

@MSerj
Created October 30, 2017 19:29
Show Gist options
  • Save MSerj/60b3e9e3c3372f1a017f525c5abfe04e to your computer and use it in GitHub Desktop.
Save MSerj/60b3e9e3c3372f1a017f525c5abfe04e to your computer and use it in GitHub Desktop.
iframe map NO SCROLL
.map iframe,
.map ymaps {
pointer-events: none;
}
$('.map').click(function () {
$('.map iframe').css("pointer-events", "auto");
$('.map ymaps').css("pointer-events", "auto");
});
$( ".map" ).mouseleave(function() {
$('.map iframe').css("pointer-events", "none");
$('.map ymaps').css("pointer-events", "none");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment