Skip to content

Instantly share code, notes, and snippets.

@dutchcelt
Last active February 11, 2024 20:35
Show Gist options
  • Save dutchcelt/7a7f247aa89fa4b7f9b1f57a71a9af89 to your computer and use it in GitHub Desktop.
Save dutchcelt/7a7f247aa89fa4b7f9b1f57a71a9af89 to your computer and use it in GitHub Desktop.
Basic domReady
function domReady(fn) {
(/d$|^i|^c/).test(document.readyState) ? requestAnimationFrame(fn) : document.addEventListener('DOMContentLoaded', fn);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment