bebaps
5/25/2017 - 10:08 PM

Disable the scroll wheel on embedded Google Maps, unless the map is clicked.

Disable the scroll wheel on embedded Google Maps, unless the map is clicked.

// Disable the scroll wheeling on embedded Google Maps unless the map is clicked on
$( '.map-container' ).on( 'click', function() {
    $( '.map-container' ).find( 'iframe' ).css( 'pointer-events', 'auto' );
});

$( '.map-container' ).mouseleave( function() {
    $( '.map-container' ).find( 'iframe' ).css( 'pointer-events', 'none' );
});
/* Disable the scroll wheeling on embedded Google Maps */
.map-container iframe {
	pointer-events: none;
}