Created
February 24, 2011 11:53
-
-
Save tobie/842085 to your computer and use it in GitHub Desktop.
Moar smallest DOMReady code, EVAR!
This file contains 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
function r(f){setTimeout(/in/(document.readyState)?r:f,9,f)} |
the third argument in IE is language? that is insanity.
the short war isn't fruitless though, since it's pretty instructive.
i'm curious, though; why do you use domContentLoaded to fix readyState in FF 3.6 instead of just using it as the domready function?
i use it to fix FF <=3.5, because they had no proper readyState.
right, but why fix it at all if all you need to know is when the document content is loaded? after all, the polling is only a fallback for a real domContentLoaded, right?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hahahaha! this never stops being entertaining. i gave up on the short war. the original hope was to make my general doc ready method smaller. and it still had to be x-browser. thus
so, the ONLY way to use setTimeout (x-b) is with a function, and a required integer. (But I think we all knew that after a certain point)