Skip to content

Instantly share code, notes, and snippets.

@aloukissas
Last active February 28, 2020 22:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aloukissas/785992989347bc6d958ac2ab145060da to your computer and use it in GitHub Desktop.
Save aloukissas/785992989347bc6d958ac2ab145060da to your computer and use it in GitHub Desktop.
function maybeShowAlert(event) {
event.preventDefault();
if (maybeShowAlert.shown === undefined) {
alert("Hello!");
maybeShowAlert.shown = true;
}
}
document.addEventListener("mouseout", maybeShowAlert, false);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment