Answers for "$(document).ready(function(){ in javascripr"

25

document ready

$( document ).ready(function() {
    console.log( "ready!" );
});
Posted by: Guest on March-24-2020
-1

js ready

// without jQuery (doesn't work in older IEs)
document.addEventListener('DOMContentLoaded', function(){ 
    // your code goes here
}, false);
Posted by: Guest on November-28-2020

Code answers related to "$(document).ready(function(){ in javascripr"

Code answers related to "Javascript"

Browse Popular Code Answers by Language