Q:

js ready

// jQuery document ready
$(document).ready(function() {
    
});
15
$( document ).ready(function() {
    console.log( "ready!" );
});
3
// A $( document ).ready() block.
$( document ).ready(function() {
    console.log( "ready!" );
});
1
<!doctype html>
<html>
<head>
</head>
<body>
Your HTML here

<script>
// self executing function here
(function() {
   // your page initialization code here
   // the DOM will be available here

})();
</script>
</body>
</html>
0
// without jQuery (doesn't work in older IEs)
document.addEventListener('DOMContentLoaded', function(){ 
    // your code goes here
}, false);
0

New to Communities?

Join the community