Skip to content

Instantly share code, notes, and snippets.

@shawndumas
Created August 12, 2011 12:46
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 shawndumas/1141959 to your computer and use it in GitHub Desktop.
Save shawndumas/1141959 to your computer and use it in GitHub Desktop.
Cross Browser DOMReady
// http://www.dustindiaz.com/smallest-domready-ever
var ready = function (f) {
(/complete|loaded|interactive/.test(document.readyState)) ?
setTimeout('ready(' + f + ')', 9) :
f();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment