Skip to content

Instantly share code, notes, and snippets.

@jeena
Created August 20, 2010 01:30
Show Gist options
  • Save jeena/539388 to your computer and use it in GitHub Desktop.
Save jeena/539388 to your computer and use it in GitHub Desktop.
function fireEvent(obj,evt){
var evObj = document.createEvent('MouseEvents');
evObj.initEvent( evt, true, false );
obj.dispatchEvent(evObj);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment