Skip to content

Instantly share code, notes, and snippets.

@iamandrewluca
Last active March 26, 2019 18:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iamandrewluca/de37df5c5b8854f03720d97a154dfae2 to your computer and use it in GitHub Desktop.
Save iamandrewluca/de37df5c5b8854f03720d97a154dfae2 to your computer and use it in GitHub Desktop.
Will prompt to confirm mailto links.
Array.from(document.querySelectorAll('[href^="mailto:"]')).forEach(a => {
a.addEventListener('click', function(e) {
if (!confirm('Are you sure?')) {
e.preventDefault()
}
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment