Skip to content

Instantly share code, notes, and snippets.

@codyogden
Created August 30, 2016 15:44
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 codyogden/eb9af855431644c7dbcbca6a4db59e34 to your computer and use it in GitHub Desktop.
Save codyogden/eb9af855431644c7dbcbca6a4db59e34 to your computer and use it in GitHub Desktop.
ready() - You Might Not Need jQuery
function ready(fn) {
if (document.readyState != 'loading'){
fn();
} else {
document.addEventListener('DOMContentLoaded', fn);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment