Skip to content

Instantly share code, notes, and snippets.

@c7x43t
Created June 29, 2021 00:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save c7x43t/be5dada7a0e13fec0f489c1830dabb3f to your computer and use it in GitHub Desktop.
Save c7x43t/be5dada7a0e13fec0f489c1830dabb3f to your computer and use it in GitHub Desktop.
function loadScript(script,...args){
if (document.readyState === 'complete' || document.readyState === 'interactive') {
script(...args);
}else{
document.addEventListener('DOMContentLoaded',script.bind(this,...args));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment