Skip to content Skip to sidebar Skip to footer

How To Use Document.ready Function On Child Pages

i need to use JavaScript on my website. When i create new web page,which is properly work with JavaScript. When i create a new web page, which is child page, derived from master pa

Solution 1:

You can put all script in document.ready so that the elements are ready when script acces them.

$(document).ready(function(){
    //put all your script of child page here.
});

Post a Comment for "How To Use Document.ready Function On Child Pages"