10 lines
273 B
JavaScript
10 lines
273 B
JavaScript
const $ = (id) => document.getElementById(id);
|
|
|
|
$("contact-info-container").addEventListener("click", () => {
|
|
fetch("contact-info.obfuscated")
|
|
.then((response) => response.text())
|
|
.then((text) => {
|
|
console.log(text ^ 69420);
|
|
});
|
|
});
|