Skip to content

Instantly share code, notes, and snippets.

@illvart
Forked from devbyray/domIsReady.js
Created September 9, 2018 03:02
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 illvart/3714727ac942f672cac60999054a480a to your computer and use it in GitHub Desktop.
Save illvart/3714727ac942f672cac60999054a480a to your computer and use it in GitHub Desktop.
Vanilla JavaScript Document Ready (Cross-Browser)
var domIsReady = (function(domIsReady) {
var isBrowserIeOrNot = function() {
return (!document.attachEvent || typeof document.attachEvent === "undefined" ? 'not-ie' : 'ie');
}
domIsReady = function(callback) {
if(callback && typeof callback === 'function'){
if(isBrowserIeOrNot() !== 'ie') {
document.addEventListener("DOMContentLoaded", function() {
return callback();
});
} else {
document.attachEvent("onreadystatechange", function() {
if(document.readyState === "complete") {
return callback();
}
});
}
} else {
console.error('The callback is not a function!');
}
}
return domIsReady;
})(domIsReady || {});
(function(document, window, domIsReady, undefined) {
domIsReady(function() {
console.log('My DOM is ready peeps!');
document.querySelector('#page').style.background = 'blue';
});
})(document, window, domIsReady);
<div id="page">
This is the DOM!
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment