Skip to content

Instantly share code, notes, and snippets.

@tobiastom
Forked from jeena/gist:539388
Created August 20, 2010 01:34
Show Gist options
  • Save tobiastom/539393 to your computer and use it in GitHub Desktop.
Save tobiastom/539393 to your computer and use it in GitHub Desktop.
var foo = document.createElement('a')
foo.addEventListener('click', function() { console.log('yeah') }, false)
var event = document.createEvent('UIEvents')
event.initEvent('click', false, false)
foo.dispatchEvent(event)
// yeah
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment