<div id="google-maps">
<iframe frameborder="0" height="450" src="***embed-map***" width="100"> </iframe>
</div>
<style>
#google-maps iframe { pointer-events:none; }
</style>
<script>
$(function() {
$('#google-maps').click(function(e) {
$(this).find('iframe').css('pointer-events', 'auto');
}).mouseleave(function(e) {
$(this).find('iframe').css('pointer-events', 'none');
});
})
</script>
No comments:
Post a Comment