Created
January 8, 2012 20:45
-
-
Save Victa/1579626 to your computer and use it in GitHub Desktop.
Dom ready trick
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
| (var domCheck = function(){ | |
| if(!document.body) return setTimeout(domCheck, 1); | |
| //do moar here | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment