Created
September 25, 2014 09:48
-
-
Save ghostcode/6f507816906bee762ac5 to your computer and use it in GitHub Desktop.
documentReady.js
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
| /* | |
| jQuery's document.ready/$(function(){}) should | |
| you wish to use a cross-browser DOMReady solution | |
| without opting for a library. | |
| Demo: http://jsfiddle.net/8j85t/ | |
| usage: | |
| $(function(){ | |
| // your code | |
| }); | |
| Parts: jQuery project, Diego Perini, Lucent M. | |
| This version: Addy Osmani, David Dallet | |
| */ | |
| (function( window ) { | |
| "use strict"; | |
| // Define a local copy of $ | |
| var $ = function( callback ) { | |
| registerOrRunCallback( callback ); | |
| bindReady(); | |
| }, | |
| // Use the correct document accordingly with window argument (sandbox) | |
| document = window.document, | |
| readyBound = false, | |
| callbackQueue = [], | |
| registerOrRunCallback = function( callback ) { | |
| if ( typeof callback === "function" ) { | |
| callbackQueue.push(callback); | |
| } | |
| }, | |
| DOMReadyCallback = function() { | |
| while( callbackQueue.length ) { | |
| (callbackQueue.shift())(); | |
| } | |
| registerOrRunCallback = function( callback ) { | |
| callback(); | |
| }; | |
| }, | |
| // The ready event handler | |
| DOMContentLoaded = function() { | |
| if ( document.addEventListener ) { | |
| document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false ); | |
| } else { | |
| // we're here because readyState !== "loading" in oldIE | |
| // which is good enough for us to call the dom ready! | |
| document.detachEvent( "onreadystatechange", DOMContentLoaded ); | |
| } | |
| DOMReady(); | |
| }, | |
| // Handle when the DOM is ready | |
| DOMReady = function() { | |
| // Make sure that the DOM is not already loaded | |
| if ( !$.isReady ) { | |
| // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). | |
| if ( !document.body ) { | |
| return setTimeout( DOMReady, 1 ); | |
| } | |
| // Remember that the DOM is ready | |
| $.isReady = true; | |
| // If there are functions bound, to execute | |
| DOMReadyCallback(); | |
| // Execute all of them | |
| } | |
| }, // /ready() | |
| bindReady = function() { | |
| var toplevel = false; | |
| if ( readyBound ) { | |
| return; | |
| } | |
| readyBound = true; | |
| // Catch cases where $ is called after the | |
| // browser event has already occurred. | |
| if ( document.readyState !== "loading" ) { | |
| DOMReady(); | |
| } | |
| // Mozilla, Opera and webkit nightlies currently support this event | |
| if ( document.addEventListener ) { | |
| // Use the handy event callback | |
| document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false ); | |
| // A fallback to window.onload, that will always work | |
| window.addEventListener( "load", DOMContentLoaded, false ); | |
| // If IE event model is used | |
| } else if ( document.attachEvent ) { | |
| // ensure firing before onload, | |
| // maybe late but safe also for iframes | |
| document.attachEvent( "onreadystatechange", DOMContentLoaded ); | |
| // A fallback to window.onload, that will always work | |
| window.attachEvent( "onload", DOMContentLoaded ); | |
| // If IE and not a frame | |
| // continually check to see if the document is ready | |
| try { | |
| toplevel = window.frameElement == null; | |
| } catch (e) {} | |
| if ( document.documentElement.doScroll && toplevel ) { | |
| doScrollCheck(); | |
| } | |
| } | |
| }, | |
| // The DOM ready check for Internet Explorer | |
| doScrollCheck = function() { | |
| if ( $.isReady ) { | |
| return; | |
| } | |
| try { | |
| // If IE is used, use the trick by Diego Perini | |
| // http://javascript.nwbox.com/IEContentLoaded/ | |
| document.documentElement.doScroll("left"); | |
| } catch ( error ) { | |
| setTimeout( doScrollCheck, 1 ); | |
| return; | |
| } | |
| // and execute any waiting functions | |
| DOMReady(); | |
| }; | |
| // Is the DOM ready to be used? Set to true once it occurs. | |
| $.isReady = false; | |
| // Expose $ to the global object | |
| window.$ = $; | |
| })( window ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment