RE: How to start jquery? Where do i have to write the jquery, what is the first line of jquery

      Honey Default Asked on May 12, 2026 in No Category.
      Add Comment
      486 Answers
        $(document).ready(function(){
        
        /* you can start writing code in here.. */
        
        });

        The above script runs once DOM Loaded,  even of some of the images are still download.

        DOM is the nothing but structure of html includes div, table elements with out assets.

        Younger Kid Answered on December 25, 2015.
        Add Comment

        Your Answer

        By posting your answer, you agree to the privacy policy and terms of service.