Skip to content

Instantly share code, notes, and snippets.

@TheEpicFace007
Created March 21, 2021 20:09
Show Gist options
  • Save TheEpicFace007/c44133ba97cf9e4ad3a0eeb397b0c548 to your computer and use it in GitHub Desktop.
Save TheEpicFace007/c44133ba97cf9e4ad3a0eeb397b0c548 to your computer and use it in GitHub Desktop.
Classkicks cheats
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