jQuery website jQuery documentation

Effects

show() : jQuery

Displays each of the set of matched elements if they are hidden.

Example

Before
<p style="display: none">Hello</p>
Code
$("p").show()
Result
[ <p style="display: block">Hello</p> ]

show(String|Number speed, Function callback) : jQuery

speedString|NumberA string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
callbackFunction(optional) A function to be executed whenever the animation completes.

Show all matched elements using a graceful animation and firing an optional callback after completion.

The height, width, and opacity of each of the matched elements are changed dynamically according to the specified speed.

Examples

Code
$("p").show("slow");
Code
$("p").show("slow",function(){
  alert("Animation Done.");
});

hide() : jQuery

Hides each of the set of matched elements if they are shown.

Example

Before
<p>Hello</p>
Code
$("p").hide()
Result
[ <p style="display: none">Hello</p> ]

hide(String|Number speed, Function callback) : jQuery

speedString|NumberA string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
callbackFunction(optional) A function to be executed whenever the animation completes.

Hide all matched elements using a graceful animation and firing an optional callback after completion.

The height, width, and opacity of each of the matched elements are changed dynamically according to the specified speed.

Examples

Code
$("p").hide("slow");
Code
$("p").hide("slow",function(){
  alert("Animation Done.");
});

toggle() : jQuery

Toggles each of the set of matched elements. If they are shown, toggle makes them hidden. If they are hidden, toggle makes them shown.

Example

Before
<p>Hello</p><p style="display: none">Hello Again</p>
Code
$("p").toggle()
Result
[ <p style="display: none">Hello</p>, <p style="display: block">Hello Again</p> ]

slideDown(String|Number speed, Function callback) : jQuery

speedString|Number(optional) A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
callbackFunction(optional) A function to be executed whenever the animation completes.

Reveal all matched elements by adjusting their height and firing an optional callback after completion.

Only the height is adjusted for this animation, causing all matched elements to be revealed in a "sliding" manner.

Examples

Code
$("p").slideDown("slow");
Code
$("p").slideDown("slow",function(){
  alert("Animation Done.");
});

slideUp(String|Number speed, Function callback) : jQuery

speedString|Number(optional) A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
callbackFunction(optional) A function to be executed whenever the animation completes.

Hide all matched elements by adjusting their height and firing an optional callback after completion.

Only the height is adjusted for this animation, causing all matched elements to be hidden in a "sliding" manner.

Examples

Code
$("p").slideUp("slow");
Code
$("p").slideUp("slow",function(){
  alert("Animation Done.");
});

slideToggle(String|Number speed, Function callback) : jQuery

speedString|Number(optional) A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
callbackFunction(optional) A function to be executed whenever the animation completes.

Toggle the visibility of all matched elements by adjusting their height and firing an optional callback after completion.

Only the height is adjusted for this animation, causing all matched elements to be hidden in a "sliding" manner.

Examples

Code
$("p").slideToggle("slow");
Code
$("p").slideToggle("slow",function(){
  alert("Animation Done.");
});

fadeIn(String|Number speed, Function callback) : jQuery

speedString|Number(optional) A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
callbackFunction(optional) A function to be executed whenever the animation completes.

Fade in all matched elements by adjusting their opacity and firing an optional callback after completion.

Only the opacity is adjusted for this animation, meaning that all of the matched elements should already have some form of height and width associated with them.

Examples

Code
$("p").fadeIn("slow");
Code
$("p").fadeIn("slow",function(){
  alert("Animation Done.");
});

fadeOut(String|Number speed, Function callback) : jQuery

speedString|Number(optional) A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
callbackFunction(optional) A function to be executed whenever the animation completes.

Fade out all matched elements by adjusting their opacity and firing an optional callback after completion.

Only the opacity is adjusted for this animation, meaning that all of the matched elements should already have some form of height and width associated with them.

Examples

Code
$("p").fadeOut("slow");
Code
$("p").fadeOut("slow",function(){
  alert("Animation Done.");
});

fadeTo(String|Number speed, Number opacity, Function callback) : jQuery

speedString|NumberA string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
opacityNumberThe opacity to fade to (a number from 0 to 1).
callbackFunction(optional) A function to be executed whenever the animation completes.

Fade the opacity of all matched elements to a specified opacity and firing an optional callback after completion.

Only the opacity is adjusted for this animation, meaning that all of the matched elements should already have some form of height and width associated with them.

Examples

Code
$("p").fadeTo("slow", 0.5);
Code
$("p").fadeTo("slow", 0.5, function(){
  alert("Animation Done.");
});

animate(Hash params, String|Number speed, String easing, Function callback) : jQuery

paramsHashA set of style attributes that you wish to animate, and to what end.
speedString|Number(optional) A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
easingString(optional) The name of the easing effect that you want to use (Plugin Required).
callbackFunction(optional) A function to be executed whenever the animation completes.

A function for making your own, custom, animations. The key aspect of this function is the object of style properties that will be animated, and to what end. Each key within the object represents a style property that will also be animated (for example: "height", "top", or "opacity").

The value associated with the key represents to what end the property will be animated. If a number is provided as the value, then the style property will be transitioned from its current state to that new number. Oterwise if the string "hide", "show", or "toggle" is provided, a default animation will be constructed for that property.

Examples

Code
$("p").animate({
  height: 'toggle', opacity: 'toggle'
}, "slow");
Code
$("p").animate({
  left: 50, opacity: 'show'
}, 500);

An example of using an 'easing' function to provide a different style of animation. This will only work if you have a plugin that provides this easing function (Only 'linear' is provided by default, with jQuery).

Code
$("p").animate({
  opacity: 'show'
}, "slow", "easein");