Created
March 31, 2018 09:33
-
-
Save gladiatorAsh/f7be3ebaec87e4d6e18c014f25ba1c0b to your computer and use it in GitHub Desktop.
JavaScript equivalent for document.ready of jQuery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| //Works for- | |
| //IE6 and up | |
| //Firefox 3.6 and up | |
| //Chrome 14 and up | |
| //Safari 5.1 and up | |
| //Opera 11.6 and up | |
| //Multiple iOS devices | |
| //Multiple Android devices | |
| // pass a function reference | |
| docReady(fn); | |
| // use an anonymous function | |
| docReady(function() { | |
| // code here | |
| }); | |
| // pass a function reference and a context | |
| // the context will be passed to the function as the first argument | |
| docReady(fn, context); | |
| // use an anonymous function with a context | |
| docReady(function(context) { | |
| // code here that can use the context argument that was passed to docReady | |
| }, ctx); | |
| */ | |
| (function(funcName, baseObj) { | |
| // The public function name defaults to window.docReady | |
| // but you can pass in your own object and own function name and those will be used | |
| // if you want to put them in a different namespace | |
| funcName = funcName || "docReady"; | |
| baseObj = baseObj || window; | |
| var readyList = []; | |
| var readyFired = false; | |
| var readyEventHandlersInstalled = false; | |
| // call this when the document is ready | |
| // this function protects itself against being called more than once | |
| function ready() { | |
| if (!readyFired) { | |
| // this must be set to true before we start calling callbacks | |
| readyFired = true; | |
| for (var i = 0; i < readyList.length; i++) { | |
| // if a callback here happens to add new ready handlers, | |
| // the docReady() function will see that it already fired | |
| // and will schedule the callback to run right after | |
| // this event loop finishes so all handlers will still execute | |
| // in order and no new ones will be added to the readyList | |
| // while we are processing the list | |
| readyList[i].fn.call(window, readyList[i].ctx); | |
| } | |
| // allow any closures held by these functions to free | |
| readyList = []; | |
| } | |
| } | |
| function readyStateChange() { | |
| if ( document.readyState === "complete" ) { | |
| ready(); | |
| } | |
| } | |
| // This is the one public interface | |
| // docReady(fn, context); | |
| // the context argument is optional - if present, it will be passed | |
| // as an argument to the callback | |
| baseObj[funcName] = function(callback, context) { | |
| if (typeof callback !== "function") { | |
| throw new TypeError("callback for docReady(fn) must be a function"); | |
| } | |
| // if ready has already fired, then just schedule the callback | |
| // to fire asynchronously, but right away | |
| if (readyFired) { | |
| setTimeout(function() {callback(context);}, 1); | |
| return; | |
| } else { | |
| // add the function and context to the list | |
| readyList.push({fn: callback, ctx: context}); | |
| } | |
| // if document already ready to go, schedule the ready function to run | |
| if (document.readyState === "complete") { | |
| setTimeout(ready, 1); | |
| } else if (!readyEventHandlersInstalled) { | |
| // otherwise if we don't have event handlers installed, install them | |
| if (document.addEventListener) { | |
| // first choice is DOMContentLoaded event | |
| document.addEventListener("DOMContentLoaded", ready, false); | |
| // backup is window load event | |
| window.addEventListener("load", ready, false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment