mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
9 lines
247 B
TypeScript
9 lines
247 B
TypeScript
export default function triggerEvent(el: Element, type: string) {
|
|
if ('createEvent' in document) {
|
|
// modern browsers, IE9+
|
|
const e = document.createEvent('HTMLEvents');
|
|
e.initEvent(type, false, true);
|
|
el.dispatchEvent(e);
|
|
}
|
|
}
|