1
0
Fork 0
owenryan.us/assets/email.ts
2023-05-15 23:59:18 -04:00

17 lines
No EOL
947 B
TypeScript

// This code de-obfuscates my email and displays it on screen when the button is clicked
// It's not a perfect solution, but it should stop be enough to stop email scraping
// Email encoded in base64. This might be changed in the future to prevent scraping targeting base64 strings
const email: string = "Y29udGFjdEBvd2Vucnlhbi51cwo=";
document.addEventListener("DOMContentLoaded", () => {
// Get document elements
const button: HTMLButtonElement = document.querySelector("#emailButton");
const emailDiv: HTMLDivElement = document.querySelector("#email");
// Decode the email string and insert a mailto link into the DOM, then disable the button
button.addEventListener("click", () => {
const decodedEmail: string = atob(email);
emailDiv.insertAdjacentHTML("beforeend", `<div class="col"><a href="mailto:${decodedEmail}"><strong>${decodedEmail}</strong></a></div>`);
button.disabled = true;
})
});