Buttonset

Themeable button sets. .buttonset() is bundled with .button(). Although they are separate widgets, they are combined into a single file. If you have .button() available, you also have .buttonset() available. A button set provides a visual grouping for related buttons. It is recommended that a button set be used whenever you have a group of related buttons. Button sets work by selecting all appropriate descendants and applying .button() to them. You

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

Rangeslider

Creates a rangeslider widget Range Slider The rangeslider widget can be considered as a double handle slider. To add a rangeslider widget to your page, use two standard inputs with the type="range" attribute, and put them inside a <div> container. The input values are used to configure the starting position of the handles and the values are populated in the corresponding text inputs (the first one at the beginning of the rangeslider, and

.context

The DOM node context originally passed to jQuery(); if none was passed then context will likely be the document. The .context property was deprecated in jQuery 1.10 and is only maintained to the extent needed for supporting .live() in the jQuery Migrate plugin. It may be removed without notice in a future version. The .live() method for binding event handlers uses this property to determine the root element to use for its event delegation needs. The v

.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

jQuery.queue()

Show the queue of functions to be executed on the matched element. Note: This is a low-level method, you should probably use .queue() instead. jQuery.queue( element [, queueName ] ) version added: 1.3 element Element A DOM element to inspect for an att

Slide effect

Slides the element out of the viewport. slide direction (default: "both") String The direction of the effect. Possible values: "left", "right", "up", "down". distance (default: element's outerWidth) Number