Created
March 21, 2021 20:09
-
-
Save TheEpicFace007/c44133ba97cf9e4ad3a0eeb397b0c548 to your computer and use it in GitHub Desktop.
Classkicks cheats
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
function revealAnswer() { | |
for (const elem of document.querySelectorAll(".interactive")) { | |
if (elem.length < 1) | |
continue; | |
if (elem?.children[1]?.style?.visibility) { | |
if (elem.children[1]?.style?.visibility == "hidden") { | |
elem.children[1].style.visibility = "" | |
} | |
} | |
} | |
} | |
setInterval(revealAnswer, 10) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment