jQuery UI API Category - Method Overrides
jQuery UI overrides several built-in jQuery methods to provide additional functionality. When using these overrides, it is important to ensure that jQuery UI is loaded. If jQuery UI is not loaded, the methods still exist but the expected functionality will be unavailable, leading to hard-to-trace errors.
API | Description | Also Belongs to Category |
---|---|---|
.addClass() | Adds the specified class(es) to each element in the set of matched elements when the animation style changes. | Effects Effects Core |
.focus() | Asynchronously focuses on an element. | Method UI Core |
.hide() | Hides the matched elements with a custom effect. | Effects Effects Core Method |
.position() | Positions an element relative to another. | Method Utilities |
.removeClass() | Removes the specified class(es) from each element in the set of matched elements when the animation style changes. | Effects Effects Core |
.show() | Shows the matched elements with a custom effect. | Effects Effects Core Method |
.toggle() | Toggles the visibility of the matched elements with a custom effect. | Effects Effects Core Method |
.toggleClass() | Adds or removes one or more classes from each element in the set of matched elements depending on the class's presence and the value of the switch parameter when the animation style changes. | Effects Effects Core |