Skip to content

Instantly share code, notes, and snippets.

@piouc
Created March 4, 2025 00:47
Show Gist options
  • Save piouc/1111f1fa90f83ffc7963cc346dc99f99 to your computer and use it in GitHub Desktop.
Save piouc/1111f1fa90f83ffc7963cc346dc99f99 to your computer and use it in GitHub Desktop.
js utils
const waitForLoad = fn => {
if(document.readyState === 'loading'){
document.addEventListener('DOMContentLoaded', fn)
} else {
fn()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment