Skip to content

Instantly share code, notes, and snippets.

@iovar
Created June 16, 2015 10:14
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 iovar/2855b0c00291cf5889d6 to your computer and use it in GitHub Desktop.
Save iovar/2855b0c00291cf5889d6 to your computer and use it in GitHub Desktop.
function triggerEvent(elem, eventName) {
var event = document.createEvent('HTMLEvents');
event.initEvent(eventName,true, true);
event.eventName = eventName;
elem.dispatchEvent(event);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment