event.type

Describes the nature of the event. event.type version added: 1.0 Examples: On all anchor clicks, alert the event type. $( "a" ).click(function( event ) { alert( event.type ); // "click" });

Explode effect

The explode effect hides or shows an element by splitting it into pieces. explode pieces (default: 9) Integer The number of pieces to explode, should be a perfect square, any other values are rounded to the nearest square.

vmousecancel event

Virtualized mousecancel event handler. We provide a set of "virtual" mouse events that attempt to abstract away mouse and touch events. This allows the developer to register listeners for the basic mouse events, such as mousedown, mousemove, mouseup, and click, and the plugin will take care of registering the correct listeners behind the scenes to invoke the listener at the fastest possible time for that device. In touch environments, the plugi

jQuery.mobile.changePage()

Programmatically change from one page to another. Programmatically change from one page to another. This method is used internally for the page loading and transitioning that occurs as a result of clicking a link or submitting a form, when those features are enabled. jQuery.mobile.changePage( to [, options ] ) to

.ajaxStart()

Register a handler to be called when the first Ajax request begins. This is an Ajax Event. Whenever an Ajax request is about to be sent, jQuery checks whether there are any other outstanding Ajax requests. If none are in progress, jQuery triggers the ajaxStart event. Any and all handlers that have been registered with the .ajaxStart() method are executed at this time. To observe this method in action, set up a basic Ajax load request: <div class="t

:reset selector

Selects all elements of type reset. :reset is equivalent to [type="reset"] Because :reset is a jQuery extension and not part of the CSS specification, queries using :reset cannot take advantage of the performance boost provided by the native DOM querySelectorAll() method. For better performance in modern browsers, use [type="reset"] instead. jQuery( ":reset" ) version added: 1.0

:root selector

Selects the element that is the root of the document. In HTML, the root of the document, and thus the element that $(":root") selects, is always the <html> element. jQuery( ":root" ) version added: 1.9 Examples: Display the tag name of the root element. <!doctyp

Datepicker

Select a date from a popup or inline calendar The jQuery UI Datepicker is a highly configurable plugin that adds datepicker functionality to your pages. You can customize the date format and language, restrict the selectable date ranges and add in buttons and other navigation options easily. By default, the datepicker calendar opens in a small overlay when the associated text field gains focus. For an inline calendar, simply attach the datepicker to a

.jqmHijackable()

For users that wish to respect data-ajax=false parent elements during custom form and link binding jQuery Mobile provides the $.fn.jqmHijackable filter method. For users that wish to respect data-ajax=false parent elements during custom form and link binding jQuery Mobile provides the $.fn.jqmHijackable filter method. Settings: If, and only if, $.mobile.ignoreContentEnabled is set to true, this method will traverse the parent nodes for each DO

swiperight event

Triggered when a swipe event occurs moving in the right direction. Triggered when a horizontal drag of 30px or more (and less than 30px vertically) occurs within 1 second duration in the right direction. See the swipe event entry for more detailed information on the swipe event. jQuery( ".selector" ).on( "swiperight", function( event ) { ... } )