jQuery – $().jquery Property
The $().jquery property returns a string containing the jQuery version number being used.
The $().jquery property returns a string containing the jQuery version number being used.
The jQuery.fx.interval property is used to change the animation firing rate in milliseconds.
The jQuery.fx.off property is used to globally disable/enable all animations, which will immediately set elements to the final state of the animation.
The jQuery.support property contains a collection of properties representing different browser features or bugs.
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.
The nextUntil() method returns all next sibling elements between the selector and stop. If both parameters are empty, it will return ALL next siblings.