Created
November 8, 2020 12:27
-
-
Save davidsharp/0b5e2efbf482174a649bd22011c50aae to your computer and use it in GitHub Desktop.
Obfuscated email address mailto href on hover [PoC]
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
| <!--some obfuscated email address--> | |
| <a id="email">hello🍥example👾com</a> |
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
| email.addEventListener("mouseover",function(){ | |
| email.href='mailto:'+[['hello','example'].join('@'),'com'].join('.') | |
| }) | |
| email.addEventListener("mouseout",function(){ | |
| email.removeAttribute('href') | |
| }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment