Effect


hide / show

jQuery has some easy-to-implement effects to create animations.With jQuery, you can hide and show HTML elements with the hide() and show() methods

$(selector).hide(speed,callback);
$(selector).show(speed,callback);

speed in milliseconds.

fade

JQuery has -

slide

Slide methods:

animate

The animate() method lets you animate to a set value, or to a value relative to the current value.
You need to define the CSS properties to be animated as its parameter in JSON format ("key":"value" pairs).

stop

callback

chaining