Skip to content

Instantly share code, notes, and snippets.

@nextab
Created July 29, 2022 10:14
Show Gist options
  • Select an option

  • Save nextab/8a1970dc292cb7ed708c959f1fa4e6f0 to your computer and use it in GitHub Desktop.

Select an option

Save nextab/8a1970dc292cb7ed708c959f1fa4e6f0 to your computer and use it in GitHub Desktop.
Bei Klick auf das Element #mousekiller wird dieses auf display: none; gesetzt.
<script>
// Implementation for our hacky Google Map Embed - add this code to your footer!
const mousekiller = document.getElementById("mousekiller");
if(mousekiller) {
mousekiller.addEventListener('click', function (event) {
mousekiller.style.display = "none";
});
};
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment