Valid Web-Development-Applications Dumps shared by ExamDiscuss.com for Helping Passing Web-Development-Applications Exam! ExamDiscuss.com now offer the newest Web-Development-Applications exam dumps, the ExamDiscuss.com Web-Development-Applications exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com Web-Development-Applications dumps with Test Engine here:
Which tag is required when importing the jQuery library?
Correct Answer: C
The <script> tag is required when importing the jQuery library into an HTML document. * Including jQuery: * Purpose: The <script> tag is used to embed or reference executable code (JavaScript). * Example: <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> * Explanation: * The <script> tag should be placed in the <head> or at the end of the <body> to ensure that the library is loaded before the scripts that depend on it. * References: * jQuery Getting Started * MDN Web Docs - <script>