Answer & Solution
<p>The document ready function in jQuery is used to execute code when the DOM (Document Object Model) is fully loaded and ready for manipulation.
<p>The document ready function in jQuery is used to execute code when the DOM (Document Object Model) is fully loaded and ready for manipulation.
Which jQuery method is used to perform AJAX requests?
A). get()
B). ajax()
C). post()
D). load()
What is the purpose of the attr() method in jQuery?
A). To toggle attributes of elements
B). To add attributes to elements
C). To get or set attributes of elements
D). To remove attributes from elements
How can you execute jQuery code after the DOM is fully loaded?
A). By using the document.onload event
B). By embedding the jQuery code directly into the HTML document
C). By using the jQuery.ready() method
D). By using the window.onload event
Which of the following is a valid jQuery selector?
A). $('div > p')
B). $('div ~ p')
C). $('div p')
D). $('div + p')
What is the purpose of the animate() method in jQuery?
A). To handle form submissions
B). To create animations
C). To modify CSS properties dynamically
D). To perform AJAX requests
Which jQuery method is used to add content to the end of an element?
A). before()
B). append()
C). after()
D). prepend()
How can you include jQuery in your HTML document?
A). All of the above
B). By downloading the jQuery library and linking it in the
sectionC). By using a CDN (Content Delivery Network)
D). By embedding the jQuery code directly into the HTML document
What is the purpose of the each() method in jQuery?
A). To filter elements based on a selector
B). To loop through elements and perform a function on each
C). To remove elements from the DOM
D). To add event listeners to elements
What is the syntax for selecting an element by its ID in jQuery?
A). getElementById('elementID')
B). document.getElementById('elementID')
C). $('#elementID')
D). $('.elementID')
How can you include external jQuery plugins in your project?
A). All of the above
B). By downloading the plugin file and linking it in the HTML document
C). By using a CDN (Content Delivery Network)
D). By embedding the plugin code directly into the HTML document