Skip to content

Instantly share code, notes, and snippets.

@diego-betto
Created November 14, 2016 16:37
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 diego-betto/5b754c3071620cce8a7c0c129c625324 to your computer and use it in GitHub Desktop.
Save diego-betto/5b754c3071620cce8a7c0c129c625324 to your computer and use it in GitHub Desktop.
DOM ready vanilla
<script>var domReady = function(callback) {document.readyState === "interactive" || document.readyState === "complete" ? callback() : document.addEventListener("DOMContentLoaded", callback);};</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment