Home / CSE / Javascript - CS :: Discussion

Discussion :: Javascript - CS

  1. Why do we need to use an onload event in the script tag after using the async attribute?

  2. A.

     Invoke code during page loading

    B.

     Invoke code during script loading

    C.

     Invoke code during downloading

    D.

     None of the mentioned

    View Answer

    Workspace

    Answer : Option C

    Explanation :

    When using async you don’t know when the file will be downloaded, so you can attach an onload event handler to the script tag. This will allow you to invoke or instantiate any code that will need to be run when the file is downloaded:


Be The First To Comment