Created
October 4, 2012 19:23
-
-
Save dandelionmood/3835821 to your computer and use it in GitHub Desktop.
Document Ready cross-browser
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 docReady() { | |
alert('ok'); | |
} | |
if (typeof window.addEventListener === 'function') { | |
window.addEventListener('DOMContentLoaded', docReady, false); | |
} else { | |
window.onload = function() { docReady(); }; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment