All Downloads are FREE. Search and download functionalities are using the official Maven repository.

js.fireEvent.js Maven / Gradle / Ivy

There is a newer version: 1.9
Show newest version
var evt;
if (document.createEvent) {
  evt = document.createEvent(arguments[1]);
  evt.initEvent(arguments[2], true, true);
} else {
  evt = document.createEventObject();
  evt.eventType = arguments[2];
}

evt.eventName = arguments[2];
if (document.createEvent) {
  arguments[0].dispatchEvent(evt);
} else {
  arguments[0].fireEvent("on" + evt.eventType, evt);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy