jQuery – index() Method
The index() method returns the index position of specified elements relative to other specified elements, and if not found, will return -1.
The index() method returns the index position of specified elements relative to other specified elements, and if not found, will return -1.
The innerHeight() method returns the inner height of the FIRST matched element, including padding, but NOT including border and margin.
The innerWidth() method returns the inner width of the FIRST matched element, including padding, but NOT including border and margin.
The insertAfter() method inserts HTML elements after the selected elements.
The insertBefore() method inserts HTML elements before the selected elements.
The is() method checks if one of the selected elements matches the selectorElement.
The keypress event occurs when a keyboard key is pressed down, but not for all keys (e.g. ALT, CTRL, SHIFT, ESC).
The load() method loads data from a server and puts the returned data into the selected element.
The mousedown event occurs when the left mouse button is pressed down over a selected element.
The mouseenter event occurs when the mouse pointer enters a selected element.
The mouseleave event occurs when the mouse pointer leaves a selected element.
The mousemove event occurs whenever the mouse pointer moves within a selected element.
The mouseout event occurs when the mouse pointer leaves a selected element.
The mouseover event occurs when the mouse pointer is over the selected element, and triggers even if over the element’s child element.
The mouseup event occurs when the left mouse button is released over a selected element.
The nextAll() method returns ALL next sibling elements of the selected element.