jQuery – length Property
The length property contains the number of elements in the jQuery object.
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.
The nextUntil() method returns all next sibling elements between the selector and stop. If both parameters are empty, it will return ALL next siblings.
The noConflict() method releases jQuery’s control of the $ variable and can be used to specify a new custom name for the jQuery variable.
The not() method returns elements that do NOT match a certain criteria. Elements that DO match are removed.
The off() method is most often used to remove event handlers attached with the on() method.
The offset() method sets the offset coordinates for ALL matched elements the selected elements, relative to the document.
The offsetParent() method returns the first positioned parent element.
The on() method attaches one or more event handlers to the selected elements and child elements.
The one() method attaches one or more event handlers for the selected elements, and specifies a function to run when the event occurs.
The outerHeight() method returns the outer height of the FIRST matched element, including padding and border.