Answer & Solution
<p>The append() method in jQuery is used to append content to an element.
<p>The append() method in jQuery is used to append content to an element.
Which jQuery method is used to stop animations?
A). Halt()
B). Finish()
C). Stop()
D). Pause()
What is the purpose of the .addClass() method in jQuery?
A). Remove a class
B). Add a class
C). Toggle a class
D). Hide an element
How can you animate an element's width using jQuery?
A). $('#element').animate({width: '+=100px'})
B). $('#element').animate({width: '100px'})
C). $('#element').width('100px')
D). $('#element').style
What does the .attr() method do in jQuery?
A). Add attributes
B). Get or set attributes
C). Remove attributes
D). Toggle attributes
What is the purpose of the .slideUp() method in jQuery?
A). Slide down element
B). Slide up element
C). Toggle visibility of element with sliding effect
D). Adjust height of element gradually
How can you include jQuery in an HTML document?
A).
B). External file
C). <script>
tag
D). Embedding code
How can you execute jQuery code after the DOM is fully loaded?
A). document.onload
B). Embedding jQuery code
C). jQuery.ready()
D). window.onload
What does the .val() method do in jQuery?
A). Remove form inputs
B). Validate form inputs
C). Get or set the value
D). Add validation rules
Which of the following is true about jQuery selectors?
A). Select by tag name
B). Cannot select by ID
C). Can select by various criteria
D). Limited to selecting parent elements
How do you select an element with ID 'example' using jQuery?
A). $('example')
B). $('#example')
C). $('.example')
D). document.getElementById('example')