Skip to content

Instantly share code, notes, and snippets.

View DaveInchy's full-sized avatar
💭
I may be slow to respond.

David DaveInchy

💭
I may be slow to respond.
View GitHub Profile
@DaveInchy
DaveInchy / DownloadMixamoByJakeCattrall.js
Created September 26, 2023 06:17 — forked from krazyjakee/DownloadMixamoByJakeCattrall.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);
}