What is the purpose of the .fadeTo() method in jQuery?
A). To toggle between fading in and fading out an element.
B). To gradually change the opacity of an element to a specified value.
C). To slide an element up or down depending on its current visibility state.
D). To change the display property of an element to its default value.
What effect does the .slideDown() method have on an element with fixed dimensions?
A). It gradually decreases the height of the element to hide it.
B). It gradually increases the height of the element to make it visible.
C). It gradually decreases the width of the element to hide it.
D). It gradually increases the width of the element to make it visible.
How does the .toggle() method behave when applied to a visible element?
A). It hides the element.
B). It shows the element.
C). It slides the element down to reveal it.
D). It fades in the element.
Which jQuery method is used to toggle between showing and hiding elements on a webpage?
A). .toggle()
B). .switch()
C). .swap()
D). .toggleVisibility()
What jQuery method is used to display hidden elements by setting their CSS display property to its default value?
A). .display()
B). .show()
C). .visible()
D). .displayed()
Which jQuery method is used to gradually decrease the height of an element to hide it?
A). .fadeIn()
B). .slideUp()
C). .fadeOut()
D). .slideDown()
What jQuery method is used to gradually decrease the opacity of an element to hide it?
A). .hide()
B). .slideUp()
C). .fadeOut()
D). .fadeIn()
What does the .slideUp() method do in jQuery?
A). It gradually increases the height of an element to make it visible.
B). It gradually decreases the height of an element to hide it.
C). It gradually increases the width of an element to make it visible.
D). It gradually decreases the width of an element to hide it.
Which jQuery method is used to gradually increase the opacity of an element to make it visible?
A). .show()
B). .fadeIn()
C). .slideDown()
D). .fadeTo()
What does the .fadeIn() method do in jQuery?
A). It gradually increases the opacity of an element to make it visible.
B). It gradually decreases the height of an element to hide it.
C). It slides an element down to reveal it.
D). It fades out an element by gradually decreasing its opacity.