Skip to content

Instantly share code, notes, and snippets.

@krazyjakee
krazyjakee / DownloadMixamoByJakeCattrall.js
Last active April 22, 2024 06:58 — forked from TheLouisHong/DownloadMixamoByLouisHong.js
Downloads all the free Mixamo Animations
function trigger(el, eventType) {
if (typeof eventType === 'string' && typeof el[eventType] === 'function') {
el[eventType]();
} else {
const event =
eventType === 'string'
? new Event(eventType, {bubbles: true})
: eventType;
el.dispatchEvent(event);
}