Skip to content

Instantly share code, notes, and snippets.

@kstenson
Created August 13, 2013 01:16
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 kstenson/6216952 to your computer and use it in GitHub Desktop.
Save kstenson/6216952 to your computer and use it in GitHub Desktop.
Log all events fired in a page on the console
$(document).on("click mousedown mouseup focus blur keydown change",function(e){
console.log(e);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment