Skip to content

Instantly share code, notes, and snippets.

@island205
Created November 13, 2012 10:15
Show Gist options
  • Save island205/4065027 to your computer and use it in GitHub Desktop.
Save island205/4065027 to your computer and use it in GitHub Desktop.
var body, listener;
listener = {
handleEvent: function (evt) {
return console.log(evt.type);
}
};
body = document.body;
body.addEventListener("click", listener);
body.addEventListener("keyup", listener);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment