Created
April 17, 2020 14:47
-
-
Save Kilian/d3f86eb2910cadb839cc5387bcbfbd23 to your computer and use it in GitHub Desktop.
Quick gist that converts clicked mailto links to copy-to-clipboard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const convertMailto = () => { | |
const copyToClipboard = str => { | |
const el = document.createElement("textarea"); | |
el.value = str; | |
el.setAttribute("readonly", ""); | |
el.style.position = "absolute"; | |
el.style.opacity = "0"; | |
el.style.pointerEvents = 'none'; | |
document.body.appendChild(el); | |
const selected = | |
document.getSelection().rangeCount > 0 | |
? document.getSelection().getRangeAt(0) | |
: false; | |
el.select(); | |
document.execCommand("copy"); | |
document.body.removeChild(el); | |
if (selected) { | |
document.getSelection().removeAllRanges(); | |
document.getSelection().addRange(selected); | |
} | |
}; | |
const emails = Array.from( | |
document.querySelectorAll(`a[href^="mailto:"]`) | |
); | |
emails.forEach(email => { | |
email.addEventListener("click", e => { | |
e.preventDefault(); | |
const email = e.target | |
.getAttribute("href") | |
.split("mailto:")[1] | |
.split("?")[0]; | |
copyToClipboard(email); | |
}); | |
}); | |
}; | |
convertMailto(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment