Skip to content

Instantly share code, notes, and snippets.

@krrishd
Created November 8, 2014 04:20
Show Gist options
  • Save krrishd/53b265732e2e431d6451 to your computer and use it in GitHub Desktop.
Save krrishd/53b265732e2e431d6451 to your computer and use it in GitHub Desktop.
Get the # of CodeDay registrants by pasting this into your console on Clear
(function getRegistrants() {
NodeList.prototype.forEach = Array.prototype.forEach;
registrants = 0;
document.querySelectorAll('.registrants .number').forEach(function(d) {
registrants += Number(d.innerHTML)
});
return registrants;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment