Skip to content

Instantly share code, notes, and snippets.

@gtank
Last active December 22, 2015 11:39
Show Gist options
  • Save gtank/6467517 to your computer and use it in GitHub Desktop.
Save gtank/6467517 to your computer and use it in GitHub Desktop.
Freedom
function cookieClick() {
var click = new Event("click");
var goldenCookie = document.getElementById("goldenCookie");
var bigCookie = document.getElementById("bigCookie");
if(goldenCookie.offsetWidth > 0 || goldenCookie.offsetHeight > 0) {
// i can see the cookie!
goldenCookie.dispatchEvent(click);
}
bigCookie.dispatchEvent(click);
setTimeout(cookieClick, 100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment