Created
February 20, 2012 16:49
-
-
Save cfurrow/1870075 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
window.q = []; | |
window.$ = function(f){ | |
q.push(f); | |
}; | |
//... jQuery now loaded. run all jQuery "ready" functions queued up | |
$.each(window.q,function(key,val){ | |
$(val); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment