.toggle()

Display or hide the matched elements, using custom effects. This plugin extends jQuery's built-in .toggle() method. If jQuery UI is not loaded, calling the .toggle() method may not fail directly, as the method still exists. However, the expected behavior will not occur. .toggle( effect [, options ] [, duration ] [, complete ] ) effect

Pulsate effect

The pulsate effect hides or shows an element by pulsing it in or out. pulsate times (default: 5) Integer The number of times the element should pulse. An extra half pulse is added for hide/show.

.zIndex()

Get the z-index for an element. The .zIndex() method is useful for finding the z-index of an element, regardless of whether the z-index is set directly on the element or on one of its ancestors. In order to determine the z-index, this method will start at the specified element and walk up the DOM until it finds an element that is positioned and has a z-index set. If no such element is found, then the method will return a value of 0. This method assume

Descendant selector (“ancestor descendant”)

Selects all elements that are descendants of a given ancestor. A descendant of an element could be a child, grandchild, great-grandchild, and so on, of that element. jQuery( "ancestor descendant" ) version added: 1.0 Examples: Mark all inputs that are descendants of a form with a dotted blue

:tabbable selector

Selects elements which the user can focus via tabbing. Some elements are natively tabbable, while others require explicitly setting a positive tab index. In all cases, the element must be visible in order to be tabbable. Elements of the following type are tabbable if they do not have a negative tab index and are not disabled: input, select, textarea, button, and object. Anchors are focusable if they have an href or positive tabindex attribute. area el

Dialog

Opens content in an interactive overlay. Note: Dialogs are deprecated as of jQuery Mobile 1.4.0 and will be removed in 1.5.0. The dialog option provided by the page.dialog extension of the page widget allows you to style a page as a dialog, however, the special navigational handling will be removed. You may also consider implementing dialogs using popup widgets. Any page can be presented as a modal dialog by adding the data-rel="dialog" attrib

Child selector (“parent > child”)

Selects all direct child elements specified by "child" of elements specified by "parent". As a CSS selector, the child combinator is supported by all modern web browsers including Safari, Firefox, Opera, Chrome, and Internet Explorer 7 and above, but notably not by Internet Explorer versions 6 and below. However, in jQuery, this selector (along with all others) works across all supported browsers, including IE6. The child combinator (E > F) can be

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

jQuery.mobile.getDocumentBase()

Utility method for retrieving the original document base URL. jQuery.mobile.getDocumentBase( asParsedObject ) asParsedObject (default: false) Boolean The function normally returns the original document base URL as a string. However, if you specify a truthy value for this parameter, the original

.removeProp()

Remove a property for the set of matched elements. The .removeProp() method removes properties set by the .prop() method. With some built-in properties of a DOM element or window object, browsers may generate an error if an attempt is made to remove the property. jQuery first assigns the value undefined to the property and ignores any error the browser generates. In general, it is only necessary to remove custom properties that have been set on an obj