.slideToggle()

Display or hide the matched elements with a sliding motion. The .slideToggle() method animates the height of the matched elements. This causes lower parts of the page to slide up or down, appearing to reveal or conceal the items. If the element is initially displayed, it will be hidden; if hidden, it will be shown. The display property is saved and restored as needed. If an element has a display value of inline, then is hidden and shown, it will once

.add()

Create a new jQuery object with elements added to the set of matched elements. Given a jQuery object that represents a set of DOM elements, the .add() method constructs a new jQuery object from the union of those elements and the ones passed into the method. The argument to .add() can be pretty much anything that $() accepts, including a jQuery selector expression, references to DOM elements, or an HTML snippet. Do not assume that this method appends

jQuery.getScript()

Load a JavaScript file from the server using a GET HTTP request, then execute it. This is a shorthand Ajax function, which is equivalent to: $.ajax({ url: url, dataType: "script", success: success }); The script is executed in the global context, so it can refer to other variables and use jQuery functions. Included scripts can have some impact on the current page. Success Callback The callback is fired once the script has been loaded but not n

callbacks.remove()

Remove a callback or a collection of callbacks from a callback list. This method returns the Callbacks object onto which it is attached (this). callbacks.remove( callbacks ) version added: 1.7 callbacks Function() or Array A function, or array of funct

pageload event

Triggered after the page is successfully loaded and inserted into the DOM. Note: The triggering of this event is deprecated as of jQuery Mobile 1.4.0. It will no longer be triggered in 1.6.0. The replacement for pageload is the pagecontainer widget's pagecontainerload event. In jQuery Mobile 1.4.0, the two events are identical except for their name and the fact that pagecontainerload is triggered on the pagecontainer, whereas pageload is trigg

Clip effect

The clip effect will hide or show an element by clipping the element vertically or horizontally. clip direction (default: "up") String The plane in which the clip effect will hide or show its element. vertical clips the top and bottom edges, while horizontal clips the right and left edges.

.contents()

Get the children of each element in the set of matched elements, including text and comment nodes. Given a jQuery object that represents a set of DOM elements, the .contents() method allows us to search through the immediate children of these elements in the DOM tree and construct a new jQuery object from the matching elements. The .contents() and .children() methods are similar, except that the former includes text nodes and comment nodes as well as

vclick event

Virtualized click event handler. We provide a set of "virtual" mouse events that attempt to abstract away mouse and touch events. This allows the developer to register listeners for the basic mouse events, such as mousedown, mousemove, mouseup, and click, and the plugin will take care of registering the correct listeners behind the scenes to invoke the listener at the fastest possible time for that device. In touch environments, the plugin reta

.removeClass()

Removes the specified class(es) from each of the set of matched elements while animating all style changes. Similar to native CSS transitions, jQuery UI's class animations provide a smooth transition from one state to another while allowing you to keep all the details about which styles to change in CSS and out of your JavaScript. All class animation methods, including .removeClass(), support custom durations and easings, as well as provide a callbac

.fadeTo()

Adjust the opacity of the matched elements. The .fadeTo() method animates the opacity of the matched elements. It is similar to the .fadeIn() method but that method unhides the element and always fades to 100% opacity. Durations are given in milliseconds; higher values indicate slower animations, not faster ones. The strings 'fast' and 'slow' can be supplied to indicate durations of 200 and 600 milliseconds, respectively. If any other string is suppli