Skip to content

Instantly share code, notes, and snippets.

@marutypes
Created September 19, 2016 20:01
Show Gist options
  • Save marutypes/1774d674b3b5a57c209c6bd83ba0d02f to your computer and use it in GitHub Desktop.
Save marutypes/1774d674b3b5a57c209c6bd83ba0d02f to your computer and use it in GitHub Desktop.
JQuery without JQuery
function onReady(callback) {
if (typeof callback !== 'function') return;
if (document.readyState === 'complete') {
return callback();
}
document.addEventListener('DOMContentLoaded', callback, false);
}
// onReady(function(){ //do stuff });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment