Multiple attribute selector [name=”value”][name2=”value2″]

Matches elements that match all of the specified attribute filters. jQuery( "[attributeFilter1][attributeFilter2][attributeFilterN]" ) version added: 1.0 Examples: Finds all inputs that have an id attribute and whose name attribute ends with man and sets the value. <!doctype htm

Multiple selector (“selector1, selector2, selectorN”)

Selects the combined results of all the specified selectors. You can specify any number of selectors to combine into a single result. This multiple expression combinator is an efficient way to select disparate elements. The order of the DOM elements in the returned jQuery object may not be identical, as they will be in document order. An alternative to this combinator is the .add() method. jQuery( "selector1, sele

.mousemove()

Bind an event handler to the "mousemove" JavaScript event, or trigger that event on an element. This method is a shortcut for .on( "mousemove", handler ) in the first two variations, and .trigger( "mousemove" ) in the third. The mousemove event is sent to an element when the mouse pointer moves inside the element. Any HTML element can receive this event. For example, consider the HTML: <div id="target"> Move here </div> <div id="other

.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> &

.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> <

.mouseout()

Bind an event handler to the "mouseout" JavaScript event, or trigger that event on an element. This method is a shortcut for .on( "mouseout", handler ) in the first two variation, and .trigger( "mouseout" ) in the third. The mouseout event is sent to an element when the mouse pointer leaves the element. Any HTML element can receive this event. For example, consider the HTML: <div id="outer"> Outer <div id="inner"> Inner </div&

.mouseleave()

Bind an event handler to be fired when the mouse leaves an element, or trigger that handler on an element. This method is a shortcut for .on('mouseleave', handler) in the first two variations, and .trigger('mouseleave') in the third. The mouseleave JavaScript event is proprietary to Internet Explorer. Because of the event's general utility, jQuery simulates this event so that it can be used regardless of browser. This event is sent to an element when

.map()

Pass each element in the current matched set through a function, producing a new jQuery object containing the return values. If you wish to process a plain array or object, use the jQuery.map() instead. As the return value is a jQuery object, which contains an array, it's very common to call .get() on the result to work with a basic array. The .map() method is particularly useful for getting or setting the value of a collection of elements. Consider

: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

.mouseenter()

Bind an event handler to be fired when the mouse enters an element, or trigger that handler on an element. This method is a shortcut for .on( "mouseenter", handler ) in the first two variations, and .trigger( "mouseenter" ) in the third. The mouseenter JavaScript event is proprietary to Internet Explorer. Because of the event's general utility, jQuery simulates this event so that it can be used regardless of browser. This event is sent to an element w