Skip to content

Instantly share code, notes, and snippets.

@AlexPetrov7311
Created September 5, 2018 09:20
Show Gist options
  • Select an option

  • Save AlexPetrov7311/49a8468135909874418de3940bd0cc00 to your computer and use it in GitHub Desktop.

Select an option

Save AlexPetrov7311/49a8468135909874418de3940bd0cc00 to your computer and use it in GitHub Desktop.
function eventFire(el, etype){
if (el.fireEvent) {
el.fireEvent('on' + etype);
} else {
var evObj = document.createEvent('Events');
evObj.initEvent(etype, true, false);
el.dispatchEvent(evObj);
}
}
eventFire(document.querySelector('.mount-search-bar'), 'click');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment