.hover()

Bind two handlers to the matched elements, to be executed when the mouse pointer enters and leaves the elements. The .hover() method binds handlers for both mouseenter and mouseleave events. You can use it to simply apply behavior to an element during the time the mouse is within the element. Calling $( selector ).hover( handlerIn, handlerOut ) is shorthand for: $( selector ).mouseenter( handlerIn ).mouseleave( handlerOut ); See the discussions for .m

.parentsUntil()

Get the ancestors of each element in the current set of matched elements, up to but not including the element matched by the selector, DOM node, or jQuery object. Given a selector expression that represents a set of DOM elements, the .parentsUntil() method traverses through the ancestors of these elements until it reaches an element matched by the selector passed in the method's argument. The resulting jQuery object contains all of the ancestors up to

:odd selector

Selects odd elements, zero-indexed. See also even. In particular, note that the 0-based indexing means that, counter-intuitively, :odd selects the second element, fourth element, and so on within the matched set. Because :odd is a jQuery extension and not part of the CSS specification, queries using :odd cannot take advantage of the performance boost provided by the native DOM querySelectorAll() method. To achieve the best performance when using :odd

jQuery.merge()

Merge the contents of two arrays together into the first array. The $.merge() operation forms an array that contains all elements from the two arrays. The orders of items in the arrays are preserved, with items from the second array appended. The $.merge() function is destructive. It alters the length and numeric index properties of the first object to include items from the second. If you need the original first array, make a copy of it before callin

.unload()

Bind an event handler to the "unload" JavaScript event. This method is a shortcut for .on( "unload", handler ). The unload event is sent to the window element when the user navigates away from the page. This could mean one of many things. The user could have clicked on a link to leave the page, or typed in a new URL in the address bar. The forward and back buttons will trigger the event. Closing the browser window will cause the event to be triggered.

callbacks.add()

Add a callback or a collection of callbacks to a callback list. This method returns the Callbacks object onto which it is attached (this). callbacks.add( callbacks ) version added: 1.7 callbacks Function() or Array A function, or array of functions, th

mobileinit event

Event indicating that jQuery Mobile has finished loading. This event is triggered after jQuery Mobile has finished loading, but before it has started enhancing the start page. Thus, handlers of this event have the opportunity to modify jQuery Mobile's global configuration options and all the widgets' default option values before they influence the library's behavior. You must connect a handler to the mobileinit event before you load jQuery Mobi

ID selector (“#id”)

Selects a single element with the given id attribute. For id selectors, jQuery uses the JavaScript function document.getElementById(), which is extremely efficient. When another selector is attached to the id selector, such as h2#pageTitle, jQuery performs an additional check before identifying the element as a match. Calling jQuery() (or $()) with an id selector as its argument will return a jQuery object containing a collection of either zero or one

:first-of-type selector

Selects all elements that are the first among siblings of the same element name. The :first-of-type selector matches elements that have no other element with both the same parent and the same element name coming before it in the document tree. jQuery( ":first-of-type" ) version added: 1.9 Examples:

:last-of-type selector

Selects all elements that are the last among siblings of the same element name. The :last-of-type selector matches elements that have no other element with the same parent and the same element name coming after it in the document tree. jQuery( ":last-of-type" ) version added: 1.9 Examples: F