.select()

Bind an event handler to the "select" JavaScript event, or trigger that event on an element. This method is a shortcut for .on( "select", handler ) in the first two variations, and .trigger( "select" ) in the third. The select event is sent to an element when the user makes a text selection inside it. This event is limited to <input type="text"> fields and <textarea> boxes. For example, consider the HTML: <form> <input id="targe

Flipswitch

Creates a flipswitch widget Flip switches The flip switch is an alternative look to the checkbox or the two-option select menu. It can be toggled by a click or a swipe. To create a flip switch add the attribute data-role="flipswitch" to a checkbox input or to a select which has two option values. Checkbox-based flipswitch Use the following markup to create a flipswitch based on a checkbox input: <fieldset> <div data-role="fieldconta

Sortable

Reorder elements in a list or grid using the mouse. The jQuery UI Sortable plugin makes selected elements sortable by dragging with the mouse. Note: In order to sort table rows, the tbody must be made sortable, not the table. Dependencies UI Core Widget Factory Mouse Interaction appendTo Type: jQuery or Element or Selector or String Default: "parent" Defines where the helper that moves with the mouse is being appended

jQuery.makeArray()

Convert an array-like object into a true JavaScript array. Many methods, both in jQuery and in JavaScript in general, return objects that are array-like. For example, the jQuery factory function $() returns a jQuery object that has many of the properties of an array (a length, the [] array access operator, etc.), but is not exactly the same as an array and lacks some of an array's built-in methods (such as .pop() and .reverse()). Note that after the c

.load()

Load data from the server and place the returned HTML into the matched element. Note: The event handling suite also has a method named .load(). jQuery determines which method to fire based on the set of arguments passed to it. This method is the simplest way to fetch data from the server. It is roughly equivalent to $.get(url, data, success) except that it is a method rather than global function and it has an implicit callback function. When a succe

.mouseup()

Bind an event handler to the "mouseup" JavaScript event, or trigger that event on an element. This method is a shortcut for .on('mouseup', handler) in the first variation, and .trigger('mouseup') in the second. The mouseup event is sent to an element when the mouse pointer is over the element, and the mouse button is released. Any HTML element can receive this event. For example, consider the HTML: <div id="target"> Click here </div> <

Fixedtoolbar

See Toolbar Widget As of jQuery Mobile 1.4.0 the functionality of the fixedtoolbar widget has been moved to the toolbar widget.

:submit selector

Selects all elements of type submit. The :submit selector typically applies to button or input elements. Note that some browsers treat <button> element as type="submit" implicitly while others (such as Internet Explorer) do not. To ensure that markup works consistently across all browsers and guarantee that it is possible to consistently select buttons that will submit a form, always specify a type property. Because :submit is a jQuery extensio

jQuery.mobile.path.getDocumentBase()

Utility method for retrieving the original document base URL. jQuery.mobile.path.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 ori

.on()

Attach an event handler function for one or more events to the selected elements. The .on() method attaches event handlers to the currently selected set of elements in the jQuery object. As of jQuery 1.7, the .on() method provides all functionality required for attaching event handlers. For help in converting from older jQuery event methods, see .bind(), .delegate(), and .live(). To remove events bound with .on(), see .off(). To attach an event that r