Skip to content

Instantly share code, notes, and snippets.

@developit
Last active September 13, 2017 14:05
Show Gist options
  • Save developit/ee1f4ee1de3d538dc2ca6f74ac8fb77d to your computer and use it in GitHub Desktop.
Save developit/ee1f4ee1de3d538dc2ca6f74ac8fb77d to your computer and use it in GitHub Desktop.
DOM fireEvent
function fireEvent(element, type) {
let e = document.createEvent('Event');
e.initEvent(type);
element.dispatchEvent(e);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment