Skip to content

Instantly share code, notes, and snippets.

@sergeysova
Created December 16, 2015 10:24
Show Gist options
  • Save sergeysova/77600eac4919eae5902c to your computer and use it in GitHub Desktop.
Save sergeysova/77600eac4919eae5902c to your computer and use it in GitHub Desktop.
var button = document.createElement('button');
button.onclick = function(e) { alert('clicked button', e); }
var clickEvent = new Event('click');
button.dispatchEvent(clickEvent);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment