Skip to content

Instantly share code, notes, and snippets.

@ahmadina
Forked from PaulKinlan/monitorEvents.js
Created October 19, 2016 08:02
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 ahmadina/6c95bc1cd5ca2c273d7ab30b1ec95ab5 to your computer and use it in GitHub Desktop.
Save ahmadina/6c95bc1cd5ca2c273d7ab30b1ec95ab5 to your computer and use it in GitHub Desktop.
monitorEvents.js
function monitorEvents(element) {
var log = function(e) { console.log(e);};
var events = [];
for(var i in element) {
if(i.startsWith("on")) events.push(i.substr(2));
}
events.forEach(function(eventName) {
element.addEventListener(eventName, log);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment