Created
November 17, 2009 19:50
-
-
Save tammersaleh/237210 to your computer and use it in GitHub Desktop.
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.extend({ | |
isReady: false, | |
readyList: [], | |
// Handle when the DOM is ready | |
ready: function() { | |
// Make sure that the DOM is not already loaded | |
if ( !jQuery.isReady ) { | |
// Remember that the DOM is ready | |
jQuery.isReady = true; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment