jQuery.isPlainObject()

Check to see if an object is a plain object (created using "{}" or "new Object"). Note: Host objects (or objects used by browser host environments to complete the execution environment of ECMAScript) have a number of inconsistencies which are difficult to robustly feature detect cross-platform. As a result of this, $.isPlainObject() may evaluate inconsistently across browsers in certain instances. An example of this is a test against document.location

.jqmData()

Store arbitrary data associated with the specified element. Returns the value that was set. When working with jQuery Mobile, jqmData should be used in place of jQuery core's data method (note that this includes $.fn.data, $.fn.removeData, and the $.data, $.removeData, and $.hasData utilities), as they automatically incorporate getting and setting of namespaced data attributes (even if no namespace is currently in use). Arguments: See jQuery's

Page

Primary unit of content. Pages The page widget is responsible for managing a single item in jQuery Mobile's page-based architecture. It is designed to support either single page widgets within a HTML document, or multiple local internal linked page widgets within a HTML document. The goal of this model is to allow developers to create websites using best practices â where ordinary links will "just work" without any special configuration â while

.siblings()

Get the siblings of each element in the set of matched elements, optionally filtered by a selector. Given a jQuery object that represents a set of DOM elements, the .siblings() method allows us to search through the siblings of these elements in the DOM tree and construct a new jQuery object from the matching elements. The method optionally accepts a selector expression of the same type that we can pass to the $() function. If the selector is supplied

jQuery.mobile.silentScroll()

Scroll to a particular Y position without triggering scroll event listeners. Scroll to a particular Y position without triggering scroll event listeners. jQuery.mobile.silentScroll( yPos ) yPos Number

event.metaKey

Indicates whether the META key was pressed when the event fired. Returns a boolean value (true or false) that indicates whether or not the META key was pressed at the time the event fired. This key might map to an alternative key name on some platforms. On Macintosh keyboards, the META key maps to the Command key (â). On Windows keyboards, the META key maps to the Windows key. event.metaKey

:password selector

Selects all elements of type password. $( ":password" ) is equivalent to $( "[type=password]" ). As with other pseudo-class selectors (those that begin with a ":") it is recommended to precede it with a tag name or some other selector; otherwise, the universal selector ( "*" ) is implied. In other words, the bare $( ":password" ) is equivalent to $( "*:password" ), so $( "input:password" ) should be used instead. Because :password is a jQuery extens

:even selector

Selects even elements, zero-indexed. See also odd. In particular, note that the 0-based indexing means that, counter-intuitively, :even selects the first element, third element, and so on within the matched set. Because :even is a jQuery extension and not part of the CSS specification, queries using :even cannot take advantage of the performance boost provided by the native DOM querySelectorAll() method. To achieve the best performance when using :ev

All selector (“*”)

Selects all elements. Caution: The all, or universal, selector is extremely slow, except when used by itself. jQuery( "*" ) version added: 1.0 Examples: Find every element (including head, body, etc) in the document. Note that if your browser has an extension/add-on enabled that inserts a &l

:animated selector

Select all elements that are in the progress of an animation at the time the selector is run. Note: If you use a custom jQuery build without the effects module, the :animated selector will throw an error. Because :animated is a jQuery extension and not part of the CSS specification, queries using :animated cannot take advantage of the performance boost provided by the native DOM querySelectorAll() method. To achieve the best performance when using :