Skip to content

Instantly share code, notes, and snippets.

@williamd1k0
Created September 15, 2015 04:37
Show Gist options
  • Select an option

  • Save williamd1k0/68f03ea59c5342fe99f2 to your computer and use it in GitHub Desktop.

Select an option

Save williamd1k0/68f03ea59c5342fe99f2 to your computer and use it in GitHub Desktop.
Google Super Mario easter egg score and coins counter.
var points = document.querySelector(".kno-ecr-pt.kno-fb-ctx"),
mario = document.getElementById("kno-mcbeeq"),
coins = document.querySelector("span.kno-fb-ctx"),
score = 0,
inc = 1;
mario.onclick = function(){
score += 200;
points.innerHTML = score;
coins.innerHTML = inc++;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment