InterviewSolution
Saved Bookmarks
| 1. |
Which attribute is used to specify that the script is executed when the page has finished parsing? (only for external scripts)(a) parse(b) a sync(c) defer(d) type |
|
Answer» Right option is (c) defer The best explanation: The defer attribute is a Boolean attribute. When present, it specifies that the script is executed when the page has finished parsing. |
|