.wrapAll()

Wrap an HTML structure around all elements in the set of matched elements. The .wrapAll() function can take any string or object that could be passed to the $() function to specify a DOM structure. This structure may be nested several levels deep, but should contain only one inmost element. The structure will be wrapped around all of the elements in the set of matched elements, as a single group. Consider the following HTML: <div class="container"&

.switchClass()

Adds and removes the specified class(es) to each of the set of matched elements while animating all style changes. The .switchClass() method allows you to animate the transition of adding and removing classes at the same time. 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. Al

Textinput

Creates a textinput widget for textinput, textarea or search input Text Input Text inputs and textareas are coded with standard HTML elements, then enhanced by jQuery Mobile to make them more attractive and useable on a mobile device. To collect standard alphanumeric text, use an input with a type="text" attribute. Set the for attribute of the label to match the id of the input so they are semantically associated. It's possible to accessibly hi

Scale effect

Shrink or grow an element by a percentage factor. scale direction (default: "both") String The direction of the effect. Possible values: "both", "vertical" or "horizontal". origin (default: [ "middle", "center" ])

Mouse interaction

The base interaction layer. Similar to jQuery.Widget, the mouse interaction is not intended to be used directly. It is purely a base layer for other widgets to inherit from. This page only documents what is added to jQuery.Widget, but it does include internal methods that are not intended to be overwritten. The intended public API is _mouseStart(), _mouseDrag(), _mouseStop(), and _mouseCapture(). Dependencies Widget Factory cancel

event.namespace

The namespace specified when the event was triggered. This will likely be used primarily by plugin authors who wish to handle tasks differently depending on the event namespace used. event.namespace version added: 1.4.3 Examples: Determine the event namespace used. <!

jQuery.mobile.path.makePathAbsolute()

Utility method for converting a relative file or directory path into an absolute path. Given a path that is relative to another absolute path, this utility will convert the relative path to an absolute path based on the given absolute path. jQuery.mobile.path.makePathAbsolute( relPath, absPath ) relPath

jQuery.mobile.path.isAbsoluteUrl()

Utility method for determining if a URL is absolute. Utility method for determining if a URL is absolute. This function returns a boolean true if the URL is absolute, false if not. jQuery.mobile.path.isAbsoluteUrl( url ) url String

.disableSelection()

Disable selection of text content within the set of matched elements. Disabling text selection is bad. Don't use this. .disableSelection() version added: 1.6, deprecated: 1.9 This method does not accept any arguments.

deferred.isResolved()

Determine whether a Deferred object has been resolved. This API is deprecated as of jQuery 1.7 and removed as of jQuery 1.8; please use deferred.state() instead. Returns true if the Deferred object is in the resolved state, meaning that either deferred.resolve() or deferred.resolveWith() has been called for the object and the doneCallbacks have been called (or are in the process of being called). Note that a Deferred object can be in one of three stat