Some users don't want animations to interfere with their web page experience. How can a user turn off animations?
Answer options
A
Use the jQuery method: stop()
B
Not possible to turn off the animation by the user
C
Use the jQuery method: stop.animation()
D
Use $.fx.off = true
Correct answer: Use the jQuery method: stop()
Explanation
jQuery's .stop() method stops the currently running animation on the matched elements. Setting $.fx.off = true globally disables all animations, but .stop() is the standard per-element control method.