Drop effect

The drop effect hides or shows an element fading in/out and sliding in a direction. drop direction (default: "left") String The direction the element will fall to hide the element, or the direction from which the element will be revealed. Possible Values: up, down, left, right.

jQuery.noConflict()

Relinquish jQuery's control of the $ variable. Many JavaScript libraries use $ as a function or variable name, just as jQuery does. In jQuery's case, $ is just an alias for jQuery, so all functionality is available without using $. If you need to use another JavaScript library alongside jQuery, return control of $ back to the other library with a call to $.noConflict(). Old references of $ are saved during jQuery initialization; noConflict() simply re

Blind effect

The blind effect hides or shows an element by wrapping the element in a container, and "pulling the blinds" The container has overflow: hidden applied, so height changes affect what's visible. blind direction (default: "up") String The direction the blind will be pulled to hide the e

deferred.state()

Determine the current state of a Deferred object. The deferred.state() method returns a string representing the current state of the Deferred object. The Deferred object can be in one of three states: "pending": The Deferred object is not yet in a completed state (neither "rejected" nor "resolved"). "resolved": The Deferred object is in the resolved state, meaning that either deferred.resolve() or deferred.resolveWith() has been called for the objec

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

Attribute equals selector [name=”value”]

Selects elements that have the specified attribute with a value exactly equal to a certain value. jQuery( "[attribute='value']" ) version added: 1.0 Examples: Finds all inputs with a value of "Hot Fuzz" and changes the text of the next sibling span. <!doctype html> <html l

jQuery.mobile.path.parseLocation()

Utility method for retrieving the current location as a parsed object. This method gets the current location via getLocation() and returns the result of parsing this value via parseUrl(). jQuery.mobile.path.parseLocation() This method does not accept any arguments.

pageshow event

Triggered on the "toPage" after the transition animation has completed. 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 pageshow is the pagecontainer widget's pagecontainershow event. In jQuery Mobile 1.4.0, the two events are identical except for their name and the fact that pagecontainershow is triggered on the pagecontainer, whereas pageshow is triggere

Selectmenu

Creates a select menu widget The select menu is based on a native select element, which is hidden from view and replaced with a custom-styled select button that matches the look and feel of the jQuery Mobile framework. The select menu is ARIA-enabled and keyboard accessible on the desktop as well. By default, the framework leverages the native OS options menu to use with the custom button. When the button is clicked, the native OS menu will ope

Slider

Creates a slider widget Slider To add a slider widget to your page, use a standard input with the type="range" attribute. The input's value is used to configure the starting position of the handle and the value is populated in the text input. Specify min and max attribute values to set the slider's range. If you want to constrain input to specific increments, add the step attribute. Set the value attribute to define the initial value. The frame