.submit()

Bind an event handler to the "submit" JavaScript event, or trigger that event on an element. This method is a shortcut for .on( "submit", handler ) in the first variation, and .trigger( "submit" ) in the third. The submit event is sent to an element when the user is attempting to submit a form. It can only be attached to <form> elements. Forms can be submitted either by clicking an explicit <input type="submit">, <input type="image">

pagechange event

This event is triggered after the changePage() request has finished loading the page into the DOM and all page transition animations have completed. Note that any pageshow or pagehide events will have fired *BEFORE* this event is triggered. Callbacks for this particular event will be passed a data object as the 2nd arg. The properties for this object are as follows: toPage (object or string) This property represents the page the caller wishes

Footer

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

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" ])

:first-child selector

Selects all elements that are the first child of their parent. While :first matches only a single element, the :first-child selector can match more than one: one for each parent. This is equivalent to :nth-child(1). jQuery( ":first-child" ) version added: 1.1.4 Examples: Finds the first span

.promise()

Return a Promise object to observe when all actions of a certain type bound to the collection, queued or not, have finished. The .promise() method returns a dynamically generated Promise that is resolved once all actions of a certain type bound to the collection, queued or not, have ended. By default, type is "fx", which means the returned Promise is resolved when all animations of the selected elements have completed. Resolve context and sole argum

callbacks.fireWith()

Call all callbacks in a list with the given context and arguments. This method returns the Callbacks object onto which it is attached (this). callbacks.fireWith( [context ] [, args ] ) version added: 1.7 context A reference to the context in which the callbacks in the list shou

.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

.slideUp()

Hide the matched elements with a sliding motion. The .slideUp() method animates the height of the matched elements. This causes lower parts of the page to slide up, appearing to conceal the items. Once the height reaches 0 (or, if set, to whatever the CSS min-height property is), the display style property is set to none to ensure that the element no longer affects the layout of the page. Durations are given in milliseconds; higher values indicate slo

Size effect

Resize an element to a specified width and height. size to Object Height and width to resize to. origin (default: [ "top", "left" ]) Array The vanishing point.