jQuery.dequeue()

Execute the next function on the queue for the matched element. Note: This is a low-level method, you should probably use .dequeue() instead. When jQuery.dequeue() is called, the next function on the queue is removed from the queue, and then executed. This function should in turn (directly or indirectly) cause jQuery.dequeue() to be called, so that the sequence can continue. jQuery.dequeue( element [, queueName ]

jQuery.removeData()

Remove a previously-stored piece of data. Note: This is a low-level method, you should probably use .removeData() instead. The jQuery.removeData() method allows us to remove values that were previously set using jQuery.data(). When called with the name of a key, jQuery.removeData() deletes that particular value; when called with no arguments, all values are removed. jQuery.removeData( element [, name ] )

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

.not()

Remove elements from the set of matched elements. Given a jQuery object that represents a set of DOM elements, the .not() method constructs a new jQuery object from a subset of the matching elements. The supplied selector is tested against each element; the elements that don't match the selector will be included in the result. Consider a page with a simple list on it: <ul> <li>list item 1</li> <li>list item 2</li> &

callbacks.fired()

Determine if the callbacks have already been called at least once. callbacks.fired() version added: 1.7 This method does not accept any arguments. Examples: Use callbacks.fired() to deter

Accordion

Convert a pair of headers and content panels into an accordion. The markup of your accordion container needs pairs of headers and content panels: <div id="accordion"> <h3>First header</h3> <div>First content panel</div> <h3>Second header</h3> <div>Second content panel</div> </div> Accordions support arbitrary markup, but each content panel must always be the next sibling after its ass

Fold effect

The fold effect hides or shows an element by folding it. fold size (default: 15) Number or String The size of the "folded" element. horizFirst (default: false) Boolean Whether the hori

:lt() selector

Select all elements at an index less than index within the matched set. index-related selectors The index-related selectors (including this "less than" selector) filter the set of elements that have matched the expressions that precede them. They narrow the set down based on the order of the elements within this matched set. For example, if elements are first selected with a class selector (.myclass) and four elements are returned, these elements ar

pageinit event

Triggered on the page being initialized, after initialization occurs. We recommend binding to this event instead of DOM ready() because this will work regardless of whether the page is loaded directly or if the content is pulled into another page as part of the Ajax navigation system. $( document ).on( "pageinit", "#aboutPage", function( event ) { alert( "This page was just enhanced by jQuery Mobile!" ); }); Note: This event has been depreca

jQuery.sub()

Creates a new copy of jQuery whose properties and methods can be modified without affecting the original jQuery object. This method is deprecated as of jQuery 1.7 and will be moved to a plugin in jQuery 1.8. There are two specific use cases for which jQuery.sub() was created. The first was for providing a painless way of overriding jQuery methods without completely destroying the original methods and another was for helping to do encapsulation and b