//javascript file - jQuery code $(document).ready(function(){ //overlaying är div som är först ovanpå iframe $('.wpb_map_wraper').addClass('overlaying'); $('.overlaying').find('iframe').css('pointer-events', 'none'); $( '.overlaying' ).on( "click", function() { $('.overlaying').find('iframe').css('pointer-events', 'inherit'); }); $( '.overlaying' ).mouseleave(function() { $('.overlaying').find('iframe').css('pointer-events', 'none'); }); });If you want to scroll when mouse on maps use this code. Just add it to javascript file and change name of “overlaying” to class name of the first class before iframe.
