Easy Tutorial
❮ Jqueryui Intro Api Autocomplete ❯

jQuery UI API - .switchClass()

Categories

Effects | Effects Core | Method Overrides

Usage

Description: Adds and removes the specified class(es) to each element in the set of matched elements while animating all style changes.

Returns: jQuery

Parameter Type Description Default Value
removeClassName String One or more class names to be removed from the class attribute of each matched element, separated by spaces.
addClassName String One or more class names to be added to the class attribute of each matched element, separated by spaces.
duration Number or String A string or number determining how long the animation will run. 400
easing String A string indicating which easing function to use. swing
complete Function() A function to call once the animation is complete.
Parameter Type Description
removeClassName String One or more class names to be removed from the class attribute of each matched element, separated by spaces.
addClassName String One or more class names to be added to the class attribute of each matched element, separated by spaces.
options Object All animation settings. All properties are optional. duration (Default: 400)<br> Type: Number or String<br> Description: A string or number determining how long the animation will run.<br> easing (Default: swing)<br> Type: String<br> Description: A string indicating which easing function to use.<br> complete<br> Type: Function()<br> Description: A function to call once the animation is complete.<br> children (Default: false)<br> Type: Boolean<br> Description: Specifies whether the animation should be applied to all descendants of the matched elements. This feature should be used with caution, as the cost of determining whether an element is an animated descendant is significant and increases linearly with the number of descendants.<br> queue (Default: true)<br> Type: Boolean or String<br> Description: A Boolean indicating whether to place the animation in the effects queue. If false, the animation will begin immediately. As of jQuery 1.7, the queue option also accepts a string, in which case the animation is added to the queue represented by that string.

The .switchClass() method allows you to add and remove classes at the same time during an animation transition.

Similar to native CSS transitions, jQuery UI's class animations provide a smooth transition from one state to another while ensuring that all style changes are done through CSS, without using JavaScript. All class animation methods, including .switchClass(), allow customization of the animation duration and easing function, and provide a callback upon completion of the animation.

Not all styles can be animated. For example, animating background images. Any styles that cannot be animated will be changed at the end of the animation.

This plugin extends jQuery's built-in .switchClass() method. If jQuery UI is not loaded, calling the .switchClass() method may not fail directly since the method exists in jQuery. However, the expected behavior will not occur.

Example

Adds the class "blue" to matched elements and removes the class "big" from matched elements.

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>.switchClass() Demo</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
<style>
div {
  width: 100px;
  height: 100px;
  background-color: #ccc;
}
.big {
  width: 200px;
  height: 200px;
}
.blue {
  background-color: #00f;
}
</style>
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
</head>
<body>

<div class="big"></div>

<script>
$("div").click(function() {
  $(this).switchClass("big", "blue", 1000, "easeInOutQuad");
});
</script>

</body>
</html>

View Demo

❮ Jqueryui Intro Api Autocomplete ❯