Reference for jQuery Effects Methods

This updated and complete reference guide provides a detailed list of jQuery effects methods used to create visual feedback and enhance user experience. These methods allow you to show, hide, toggle, animate, or apply transitions to elements based on user actions or page behavior.

Alphabetical Effects Reference

Below is the full list of jQuery methods used to apply visual effects, organized in alphabetical order.

Method Description
animate() Runs a custom animation on the selected elements
clearQueue() Removes all remaining queued functions from the selected elements
delay() Sets a delay for all queued functions on the selected elements
dequeue() Removes the next function from the queue, and then executes the function
fadeIn() Fades in the selected elements
fadeOut() Fades out the selected elements
fadeTo() Fades in/out the selected elements to a given opacity
fadeToggle() Toggles between the fadeIn() and fadeOut() methods
finish() Stops, removes and completes all queued animations for the selected elements
hide() Hides the selected elements
jQuery.fx.interval Sets the rate (in milliseconds) at which jQuery animations run globally
jQuery.fx.off Disables all jQuery animations globally when set to true
jQuery.speed Generates a settings object for use in defining custom animation behavior
queue() Shows the queued functions on the selected elements
show() Shows the selected elements
slideDown() Slides-down (shows) the selected elements
slideToggle() Toggles between the slideUp() and slideDown() methods
slideUp() Slides-up (hides) the selected elements
stop() Stops the currently running animation for the selected elements
toggle() Toggles between the hide() and show() methods