Osobiście używam funkcji opakowującej do obsługi ręcznie utworzonych zdarzeń. Poniższy kod doda statyczną metodę do wszystkich Event
interfejsów (wszystkie zmienne globalne kończące się na Event
są interfejsem Event) i umożliwi wywoływanie funkcji takich jak element.dispatchEvent(MouseEvent.create('click'));
w IE9 +.
(function eventCreatorWrapper(eventClassNames){
eventClassNames.forEach(function(eventClassName){
window[eventClassName].createEvent = function(type,bubbles,cancelable){
var evt
try{
evt = new window[eventClassName](type,{
bubbles: bubbles,
cancelable: cancelable
});
} catch (e){
evt = document.createEvent(eventClassName);
evt.initEvent(type,bubbles,cancelable);
} finally {
return evt;
}
}
});
}(function(root){
return Object.getOwnPropertyNames(root).filter(function(propertyName){
return /Event$/.test(propertyName)
});
}(window)));
EDYCJA: Funkcję znajdującą wszystkie Event
interfejsy można również zastąpić tablicą, aby zmienić tylko potrzebne interfejsy zdarzeń ( ['Event', 'MouseEvent', 'KeyboardEvent', 'UIEvent' /*, etc... */]
).