Created
December 8, 2013 23:03
-
-
Save chris-gunawardena/7864941 to your computer and use it in GitHub Desktop.
Quick script to run on the console to log visitors every minute.
This file contains 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
setInterval(function(){ | |
console.log(new Date().getHours() +':'+ new Date().getMinutes() +', '+document.getElementById('ID-overviewCounterValue').innerHTML) | |
},60*1000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment