Skip to content

Instantly share code, notes, and snippets.

@johnschimmel
Created July 14, 2017 19:23
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 johnschimmel/f059d2dfea8e93d2ba7adceaea88dffc to your computer and use it in GitHub Desktop.
Save johnschimmel/f059d2dfea8e93d2ba7adceaea88dffc to your computer and use it in GitHub Desktop.
count tabbing
var tabCount = 0;
function myFocusFunction() {
tabCount++;
console.log("tab #:", tabCount);
}
var x = document.getElementsByTagName('body');
x[0].addEventListener("focus", myFocusFunction, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment