Tiny Cross-browser DOM ready function in 111 bytes of JavaScript.
-
-
Save atomize/24719d0a531e53484b4127dd8d20bc9e to your computer and use it in GitHub Desktop.
Tiny Cross-browser DOM ready function in 111 bytes of JavaScript
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
<!doctype html> | |
<title>Demo</title> | |
<script> | |
var DOMReady = function(a,b,c){b=document,c='addEventListener';b[c]?b[c]('DOMContentLoaded',a):window.attachEvent('onload',a)} | |
DOMReady(function () { | |
alert('The DOM is Ready!'); | |
}); | |
</script> | |
<h1>Demo</h1> | |
<p>Tiny Cross-browser DOM ready function in 111 bytes</p> |
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
/** | |
* @param {function} a The function to execute when the DOM is ready | |
*/ | |
function(a, b, c) { | |
b = document | |
c = 'addEventListener' | |
b[c] ? b[c]('DocumentContentLoaded', a) : window.attachEvent('onload', a) | |
} |
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
function(a,b,c){b=document,c='addEventListener';b[c]?b[c]('DOMContentLoaded',a):window.attachEvent('onload',a)} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment