Last active
February 11, 2024 20:35
-
-
Save dutchcelt/7a7f247aa89fa4b7f9b1f57a71a9af89 to your computer and use it in GitHub Desktop.
Basic domReady
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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