jQuery

jQuery Intro

jQuery Intro Quiz

jQuery Intro Exercise

jQuery Basic

jQuery Basic Quiz

jQuery Basic Exercise

jQuery Advance

jQuery Advance Quiz

jQuery Advance Exercise

jQuery Selectors

jQuery Effects

jQuery Events

jQuery Methods and Properties

jQuery Traversing

jQuery CSS and HTML Methods

jQuery Effects

List of jQuery Effects

animate() Method in jQuery
The animate() method is used to perform a custom animation on a set of CSS properties.
clearQueue() Method in jQuery
The clearQueue() method is used to remove all those items from the queue that have not yet been run. We can remove any queued function with it.
delay() Method in jQuery
The delay() method is used to set a timer to delay the execution of the next item in the queue.
dequeue() Method in jQuery
The dequeue() method is used to remove the next function from the queue, and then it executes the next function.
fadeIn() Method in jQuery
The fadeIn() method is used to gradually change the opacity from 0 to 1 for selected elements. In other words, it changes from hidden to visible.
Effect fadeOut() Method in jQuery
The fadeOut() method is used to gradually change the opacity from 1 to 0 for selected elements. In other words, it changes from visible to hidden.
Effect fadeTo() Method in jQuery
The fadeTo() method is used to gradually change the opacity, for selected elements, to a specified opacity.
fadeToggle() Method in jQuery
The fadeToggle() method is used to toggles between the fadeIn() and fadeOut() methods. If the elements are faded in, fadeToggle() will fade them out. If the elements are faded out, fadeToggle() will fade them in.
finish() Method in jQuery
The finish() method is used to stop the currently running animations, remove all queued animations, and complete all animations for the selected elements.
hide() Method in jQuery
The hide() method is used to hide the selected elements. It is much more similar to display none CSS property.
Effect show() Method in jQuery
The show() method is used to show the selected elements. For hiding them again, we have to use the hide() method.
queue() Method in jQuery
The queue() method is used to show the queue of functions to be executed on the selected elements. It is one or more functions waiting to run.
slideDown() Method in jQuery
The slideDown() method is used to slide down the selected elements. In other words, it shows the element. It is used in combination with the slideUp() method.
slideUp() Method in jQuery
The slideUp() method is used to slide up the selected elements. In other words, it hides the element. It is used in combination with the slideDown() method.
slideToggle() Method in jQuery
The slideToggle() method is used to toggle between slideUp() and slideDown() for the selected elements.
stop() Method in jQuery
The stop() method is used to stop the currently running animation for the selected elements.
toggle() Method in jQuery
The toggle() method is used to toggles between hide() and show() for the selected elements.