Skip to content

Instantly share code, notes, and snippets.

@foleyatwork
Created October 11, 2018 19:41
Show Gist options
  • Save foleyatwork/5a47f512cd9824cdb7ca1e0a1a7509f0 to your computer and use it in GitHub Desktop.
Save foleyatwork/5a47f512cd9824cdb7ca1e0a1a7509f0 to your computer and use it in GitHub Desktop.
var events = [];
for (var property in HTMLElement.prototype) {
var match = property.match(/^on(.*)/);
if (match) {
events.push(match[1]);
}
}
console.log(events.join(' '));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment