Skip to content

Instantly share code, notes, and snippets.

@chris-gunawardena
Created December 8, 2013 23:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chris-gunawardena/7864941 to your computer and use it in GitHub Desktop.
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.
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