Layout Options

  • Fixed Header
    Makes the header top fixed, always visible!
  • Fixed Sidebar
    Makes the sidebar left fixed, always visible!
Introduction
Webconcept

Version History

The following tables list the changes last added / updated for the specified version:

Version 1.9:
Added
.css()
Get the value of a style property for the first element in the set of matched elements or set one or more CSS properties for every matched element
Added
.finish()
Stop the currently-running animation, remove all queued animations, and complete all animations for the matched elements
Added
:first-of-type Selector
Selects all elements that are the first among siblings of the same element name
Added
:lang Selector
Selects all elements of the specified language
Added
:last-of-type Selector
Selects all elements that are the last among siblings of the same element name
Added
:nth-last-child() Selector
Selects all elements that are the nth-child of their parent, counting from the last element to the first
Added
:nth-last-of-type() Selector
Selects all elements that are the nth-child of their parent, counting from the last element to the first
Added
:nth-of-type() Selector
Selects all elements that are the nth child of their parent in relation to siblings with the same element name
Added
:only-of-type Selector
Selects all elements that have no siblings with the same element name
Added
:root Selector
Selects the element that is the root of the document
Added
:target Selector
Selects the target element indicated by the fragment identifier of the document’s URI
Version 1.8:
Added
.addBack()
Add the previous set of elements on the stack to the current set, optionally filtered by a selector
Added
:eq() Selector
Select the element at index n within the matched set
Added
jQuery.parseHTML()
Parses a string into an array of DOM nodes
Deprecated
deferred.pipe()
Utility method to filter and/or chain Deferreds
Deleted
deferred.isResolved()
Checks whether a Deferred object has been resolved
Deleted
deferred.isRejected()
Checks whether a Deferred object has been rejected
Deleted
$.curCSS()
An alias for jQuery.css()
Deleted
$.attrFn()
Used to define which methods could be used in conjunction with the $(html, props) signature (previously undocumented)
Deleted
$(element).closest(Array)
Mostly unused signature of the .closest() method

Version 1.7:
Added
jQuery.Callbacks()
A multi-purpose callbacks list object that provides a powerful way to manage callback lists
Added
callbacks.add()
Add a callback or a collection of callbacks to a callback list
Added
callbacks.disable()
Disable a callback list from doing anything more
Added
callbacks.empty()
Remove all of the callbacks from a list
Added
callbacks.fire()
Call all of the callbacks with the given arguments
Added
callbacks.fired()
Determine if the callbacks have already been called at least once
Added
callbacks.fireWith()
Call all callbacks in a list with the given context and arguments
Added
callbacks.has()
Determine whether a supplied callback is in a list
Added
callbacks.lock()
Lock a callback list in its current state
Added
callbacks.locked()
Determine if the callbacks list has been locked
Added
callbacks.remove()
Remove a callback or a collection of callbacks from a callback list
Added
deferred.notify()
Call the progressCallbacks on a Deferred object with the given args
Added
deferred.notifyWith()
Call the progressCallbacks on a Deferred object with the given context and args
deferred.pipe()
Utility method to filter and/or chain Deferreds
Added
deferred.progress()
Add handlers to be called when the Deferred object generates progress notifications
Added
deferred.state()
Determine the current state of a Deferred object
deferred.then()
Add handlers to be called when the Deferred object is resolved or rejected
.is()
Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments
Added
jQuery.isNumeric()
Determines whether its argument is a number
Added
.off()
Remove an event handler
Added
.on()
Attach an event handler function for one or more events to the selected elements
.removeData()
Removes a previously-stored piece of data
.stop()
Stop the currently-running animation on the matched elements

Version 1.6:
.attr()
Get the value of an attribute for the first element in the set of matched elements.
.closest()
Get the first element that matches the selector, beginning at the current element and progressing up through the DOM tree.
Added
deferred.always()
Add handlers to be called when the Deferred object is either resolved or rejected.
Added
deferred.pipe()
Utility method to filter and/or chain Deferreds.
.find()
Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.
Added
:focus selector
Selects element if it is currently focused.
Added
jQuery.holdReady()
Holds or releases the execution of jQuery's ready event.
.is()
Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments.
jQuery.map()
Translate all items in an array or object to new array of items.
.nextUntil()
Get all following siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object passed.
.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.
.prevUntil()
Get all preceding siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object.
Added
.promise()
Return a Promise object to observe when all actions of a certain type bound to the collection, queued or not, have finished.
Added
.prop()
Get the value of a property for the first element in the set of matched elements.
Added
.removeProp()
Remove a property for the set of matched elements.
.undelegate()
Remove a handler from the event for all elements which match the current selector, now or in the future, based upon a specific set of root elements.

Version 1.5.1:
jQuery.ajax()
Perform an asynchronous HTTP (Ajax) request.
jQuery.support
A collection of properties that represent the presence of different browser features or bugs.

Version 1.5:
jQuery.ajax()
Perform an asynchronous HTTP (Ajax) request.
Added
jQuery.ajaxPrefilter()
Handle custom Ajax options or modify existing options before each request is sent and before they are processed by $.ajax().
.clone()
Create a deep copy of the set of matched elements.
Added
deferred.done()
Add handlers to be called when the Deferred object is resolved.
Added
deferred.fail()
Add handlers to be called when the Deferred object is rejected.
Added
deferred.isRejected()
Determine whether a Deferred object has been rejected.
Added
deferred.isResolved()
Determine whether a Deferred object has been resolved.
Added
deferred.promise()
Return a Deferred's Promise object.
Added
deferred.reject()
Reject a Deferred object and call any failCallbacks with the given args.
Added
deferred.rejectWith()
Reject a Deferred object and call any failCallbacks with the given context and args.
Added
deferred.resolve()
Resolve a Deferred object and call any doneCallbacks with the given args.
Added
deferred.resolveWith()
Resolve a Deferred object and call any doneCallbacks with the given context and args.
Added
deferred.then()
Add handlers to be called when the Deferred object is resolved or rejected.
jQuery.get()
Load data from the server using a HTTP GET request.
jQuery.getJSON()
Load JSON-encoded data from the server using a GET HTTP request.
jQuery.getScript()
Load a JavaScript file from the server using a GET HTTP request, then execute it.
Added
jQuery.hasData()
Determine whether an element has any jQuery data associated with it.
Added
jQuery.parseXML()
Parses a string into an XML document.
jQuery.post()
Load data from the server using a HTTP POST request.
Added
jQuery.sub()
Creates a new copy of jQuery whose properties and methods can be modified without affecting the original jQuery object.
Added
jQuery.when()
Provides a way to execute callback functions based on one or more objects, usually Deferred objects that represent asynchronous events

Version 1.4.4:
Added
.fadeToggle()
Display or hide the matched elements by animating their opacity.

Version 1.4.3:
.bind()
Attach a handler to an event for the elements.
.blur()
Bind an event handler to the "blur" JavaScript event, or trigger that event on an element.
.change()
Bind an event handler to the "change" JavaScript event, or trigger that event on an element.
.click()
Bind an event handler to the "click" JavaScript event, or trigger that event on an element.
Added
jQuery.cssHooks
Provides a way to hook directly into jQuery to override how particular CSS properties are retrieved or set. Amongst other uses, cssHooks can be used to create custom, browser-normalized properties for CSS3 features such as box-shadows and gradients.
.data()
Store arbitrary data associated with the matched elements.
.dblclick()
Bind an event handler to the "dblclick" JavaScript event, or trigger that event on an element.
.error()
Bind an event handler to the "error" JavaScript event.
Added
event.namespace
The namespace specified when the event was triggered.
.fadeIn()
Display the matched elements by fading them to opaque.
.fadeOut()
Hide the matched elements by fading them to transparent.
.fadeTo()
Adjust the opacity of the matched elements.
.focus()
Bind an event handler to the "focus" JavaScript event, or trigger that event on an element.
.focusin()
Bind an event handler to the "focusin" JavaScript event.
.focusout()
Bind an event handler to the "focusout" JavaScript event.
Added
jQuery.fx.interval
The rate (in milliseconds) at which animations fire.
.hide()
Hide the matched elements.
Added
jQuery.isWindow()
Determine whether the argument is a window.
.keydown()
Bind an event handler to the "keydown" JavaScript event, or trigger that event on an element.
.keypress()
Bind an event handler to the "keypress" JavaScript event, or trigger that event on an element.
.keyup()
Bind an event handler to the "keyup" JavaScript event, or trigger that event on an element.
.load()
Bind an event handler to the "load" JavaScript event.
.mousedown()
Bind an event handler to the "mousedown" JavaScript event, or trigger that event on an element.
.mouseenter()
Bind an event handler to be fired when the mouse enters an element, or trigger that handler on an element.
.mouseleave()
Bind an event handler to be fired when the mouse leaves an element, or trigger that handler on an element.
.mousemove()
Bind an event handler to the "mousemove" JavaScript event, or trigger that event on an element.
.mouseout()
Bind an event handler to the "mouseout" JavaScript event, or trigger that event on an element.
.mouseover()
Bind an event handler to the "mouseover" JavaScript event, or trigger that event on an element.
.mouseup()
Bind an event handler to the "mouseup" JavaScript event, or trigger that event on an element.
Added
jQuery.now()
Return a number representing the current time.
.resize()
Bind an event handler to the "resize" JavaScript event, or trigger that event on an element.
.scroll()
Bind an event handler to the "scroll" JavaScript event, or trigger that event on an element.
.select()
Bind an event handler to the "select" JavaScript event, or trigger that event on an element.
.show()
Display the matched elements.
.slideDown()
Display the matched elements with a sliding motion.
.slideToggle()
Display or hide the matched elements with a sliding motion.
.slideUp()
Hide the matched elements with a sliding motion.
.submit()
Bind an event handler to the "submit" JavaScript event, or trigger that event on an element.
.toggle()
Display or hide the matched elements.
Added
jQuery.type()
Determine the internal JavaScript [[Class]] of an object.
.unbind()
Remove a previously-attached event handler from the elements.
.unload()
Bind an event handler to the "unload" JavaScript event.

Version 1.4.2:
Added
.delegate()
Attach a handler to one or more events for all elements that match the selector, now or in the future, based on a specific set of root elements.
Added
.undelegate()
Remove a handler from the event for all elements which match the current selector, now or in the future, based upon a specific set of root elements.

Version 1.4.1:
.die()
Remove all event handlers previously attached using .live() from the elements.
Added
jQuery.error
Takes a string and throws an exception containing it.
.height()
Get the current computed height for the first element in the set of matched elements.
Added
jQuery.parseJSON
Takes a well-formed JSON string and returns the resulting JavaScript object.
.width()
Get the current computed width for the first element in the set of matched elements.

Version 1.4:
.add()
Add elements to the set of matched elements.
.addClass()
Adds the specified class(es) to each of the set of matched elements.
.after()
Insert content, specified by the parameter, after each element in the set of matched elements.
.append()
Insert content, specified by the parameter, to the end of each element in the set of matched elements.
.before()
Insert content, specified by the parameter, before each element in the set of matched elements.
.bind()
Attach a handler to an event for the elements.
Added
.clearQueue()
Remove from the queue all items that have not yet been run.
.closest()
Get the first ancestor element that matches the selector, beginning at the current element and progressing up through the DOM tree.
Added
jQuery.contains()
Check to see if a DOM node is within another DOM node.
.css()
Get the value of a style property for the first element in the set of matched elements.
.data()
Store arbitrary data associated with the matched elements.
jQuery.data()
Store arbitrary data associated with the specified element.
Added
.delay()
Set a timer to delay execution of subsequent items in the queue.
Added
.detach()
Remove the set of matched elements from the DOM.
Added
.eq()
Reduce the set of matched elements to the one at the specified index.
Added
.filter()
Reduce the set of matched elements to those that match the selector or pass the function's test.
Added
.first()
Reduce the set of matched elements to the first in the set.
Added
.focusin()
Bind an event handler to the "focusin" JavaScript event.
Added
.focusout()
Bind an event handler to the "focusout" JavaScript event.
Added
.has()
Reduce the set of matched elements to those that have a descendant that matches the selector or DOM element.
.hover()
Bind two handlers to the matched elements, to be executed when the mouse pointer enters and leaves the elements.
.html()
Get the HTML contents of the first element in the set of matched elements.
.index()
Search for a given element from among the matched elements.
Added
jQuery.isEmptyObject()
Check to see if an object is empty (contains no properties).
Added
jQuery.isPlainObject()
Check to see if an object is a plain object (created using "{}" or "new Object").
jQuery()
Accepts a string containing a CSS selector which is then used to match a set of elements.
Added
.last()
Reduce the set of matched elements to the final one in the set.
.live()
Attach a handler to the event for all elements which match the current selector, now and in the future.
Added
.nextUntil()
Get all following siblings of each element up to but not including the element matched by the selector.
Added
jQuery.noop()
An empty function.
.not()
Remove elements from the set of matched elements.
.offset()
Get the current coordinates of the first element in the set of matched elements, relative to the document.
jQuery.param()
Create a serialized representation of an array or object, suitable for use in a URL query string or Ajax request.
Added
.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.
.prepend()
Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.
Added
.prevUntil()
Get all preceding siblings of each element up to but not including the element matched by the selector.
Added
jQuery.proxy()
Takes a function and returns a new one that will always have a particular context.
.removeClass()
Remove a single class, multiple classes, or all classes from each element in the set of matched elements.
.replaceWith()
Replace each element in the set of matched elements with the provided new content.
.text()
Get the combined text contents of each element in the set of matched elements, including their descendants.
Added
.toArray()
Retrieve all the DOM elements contained in the jQuery set, as an array.
.toggleClass()
Add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the switch argument.
Added
.unwrap()
Remove the parents of the set of matched elements from the DOM, leaving the matched elements in their place.
.val()
Get the current value of the first element in the set of matched elements.
.wrap()
Wrap an HTML structure around each element in the set of matched elements.
.wrapInner()
Wrap an HTML structure around the content of each element in the set of matched elements.

Version 1.3:
Added
.context
The DOM node context originally passed to jQuery(); if none was passed then context will likely be the document.
Added
jQuery.dequeue()
Execute the next function on the queue for the matched element.
Added
event.currentTarget
The current DOM element within the event bubbling phase.
Added
event.isDefaultPrevented()
Returns whether event.preventDefault() was ever called on this event object.
Added
event.
isImmediatePropagationStopped()

Returns whether event.stopImmediatePropagation() was ever called on this event object.
Added
event.
isPropagationStopped()

Returns whether event.stopPropagation() was ever called on this event object.
Added
event.result
This attribute contains the last value returned by an event handler that was triggered by this event, unless the value was undefined.
Added
event.
stopImmediatePropagation()

Prevents other event handlers from being called.
Added
jQuery.fx.off
Globally disable all animations.
Added
jQuery.isArray()
Determine whether the argument is an array.
Added
.pushStack()
Add a collection of DOM elements onto the jQuery stack.
Added
jQuery.queue()
Show the queue of functions to be executed on the matched element.
Added
.selector
A selector representing selector originally passed to jQuery().
Added
jQuery.support
A collection of properties that represent the presence of different browser features or bugs.
.toggle()
Bind two or more handlers to the matched elements, to be executed on alternate clicks.
.trigger()
Execute all handlers and behaviors attached to the matched elements for the given event type.

Version 1.2.6:
Added
event.timeStamp
This attribute returns the number of milliseconds since January 1, 1970, when the event is triggered.
Added
.innerHeight()
Get the current computed height for the first element in the set of matched elements, including padding but not border.
Added
.innerWidth()
Get the current computed width for the first element in the set of matched elements, including padding but not border.
Added
.outerHeight()
Get the current computed height for the first element in the set of matched elements, including padding, border, and optionally margin.
Added
.outerWidth()
Get the current computed width for the first element in the set of matched elements, including padding and border.
Added
.scrollLeft()
Get the current horizontal position of the scroll bar for the first element in the set of matched elements.
Added
.scrollTop()
Get the current vertical position of the scroll bar for the first element in the set of matched elements.

Version 1.2.3:
Added
.data()
Store arbitrary data associated with the matched elements.
Added
jQuery.data()
Store arbitrary data associated with the specified element. Returns the value that was set.
Added
.removeData()
Remove a previously-stored piece of data.
Added
jQuery.removeData()
Remove a previously-stored piece of data.

Version 1.2:
Added
.andSelf()
Add the previous set of elements on the stack to the current set.
Added
:animated Selector
Select all elements that are in the progress of an animation at the time the selector is run.
Added
.contents()
Get the children of each element in the set of matched elements, including text and comment nodes.
Added
.dequeue()
Execute the next function on the queue for the matched elements.
Added
.hasClass()
Determine whether any of the matched elements are assigned the given class.
Added
:header Selector
Selects all elements that are headers, like h1, h2, h3 and so on.
Added
jQuery.inArray()
Search for a specified value within an array and return its index (or -1 if not found).
Added
jQuery.isFunction()
Determine if the argument passed is a Javascript function object.
Added
jQuery.makeArray()
Convert an array-like object into a true JavaScript array.
Added
.map()
Pass each element in the current matched set through a function, producing a new jQuery object containing the return values.
Added
.nextAll()
Get all following siblings of each element in the set of matched elements, optionally filtered by a selector.
Added
.position()
Get the current coordinates of the first element in the set of matched elements, relative to the offset parent.
Added
.prevAll()
Get all preceding siblings of each element in the set of matched elements, optionally filtered by a selector.
Added
.queue()
Show the queue of functions to be executed on the matched elements.
Added
.replaceAll()
A selector expression indicating which element(s) to replace.
Added
.serializeArray()
Encode a set of form elements as an array of names and values.
Added
.stop()
Stop the currently-running animation on the matched elements.
Added
.triggerHandler()
Execute all handlers attached to an element for an event.
Added
.wrapAll()
Wrap an HTML structure around all elements in the set of matched elements.

Version 1.1.4:
Added
:contains() Selector
Select all elements that contain the specified text.
Added
event.relatedTarget
The other DOM element involved in the event, if any.
Added
jQuery.extend()
Merge the contents of two or more objects together into the first object.
Added
:first-child Selector
Selects all elements that are the first child of their parent.
Added
:has() Selector
Selects elements which contain at least one element that matches the specified selector.
Added
jQuery.isXMLDoc()
Check to see if a DOM node is within an XML document (or is an XML document).
Added
:last-child Selector
Selects all elements that are the last child of their parent.
Added
:nth-child() Selector
Selects all elements that are the nth-child of their parent.
Added
:only-child Selector
Selects all elements that are the only child of their parent.
Added
.slice()
Reduce the set of matched elements to a subset specified by a range of indices.

Version 1.1.3:
jQuery.browser
Contains flags for the useragent, read from navigator.userAgent. While jQuery.browser will not be removed from future versions of jQuery, every effort to use jQuery.support and proper feature detection should be made.
Added
event.which
For key or button events, this attribute indicates the specific button or key that was pressed.
Added
jQuery.unique()
Sorts an array of DOM elements, in place, with the duplicates removed. Note that this only works on arrays of DOM elements, not strings or numbers.

Version 1.1.2:
Added
.eq()
Reduce the set of matched elements to the one at the specified index.

Version 1.1:
Added
jQuery.ajaxSetup()
Set default values for future Ajax requests.
.attr()
Get the value of an attribute for the first element in the set of matched elements.
Added
event.data
Contains the optional data passed to jQuery.fn.bind when the current executing handler was bound.
Added
.one()
Attach a handler to an event for the elements. The handler is executed at most once per element.

Version 1.0.4:
Added
event.pageX
The mouse position relative to the left edge of the document.
Added
event.pageY
The mouse position relative to the top edge of the document.
Added
jQuery.globalEval()
Execute some JavaScript code globally.

Version 1.0:
jQuery.ajax()
Perform an asynchronous HTTP (Ajax) request.
.ajaxComplete()
Register a handler to be called when Ajax requests complete.
.ajaxError()
Register a handler to be called when Ajax requests complete with an error.
.ajaxSend()
Show a message before an Ajax request is sent.
.ajaxStart()
Register a handler to be called when the first Ajax request begins.
.ajaxStop()
Register a handler to be called when all Ajax requests have completed.
.ajaxSuccess()
Show a message when an Ajax request completes successfully.
All Selector ("*")
Selects all elements.
.animate()
Perform a custom animation of a set of CSS properties.
.appendTo()
Insert every element in the set of matched elements to the end of the target.
Attribute Contains Prefix Selector [name|=value]
Selects elements that have the specified attribute with a value either equal to a given string or starting with that string followed by a hyphen (-).
Attribute Contains Selector [name*=value]
Selects elements that have the specified attribute with a value containing the a given substring.
Attribute Contains Word Selector [name~=value]
Selects elements that have the specified attribute with a value containing a given word, delimited by spaces.
Attribute Ends With Selector [name$=value]
Selects elements that have the specified attribute with a value ending exactly with a given string. The comparison is case sensitive.
Attribute Equals Selector [name=value]
Selects elements that have the specified attribute with a value exactly equal to a certain value.
Attribute Not Equal Selector [name!=value]
Select elements that either don't have the specified attribute, or do have the specified attribute but not with a certain value.
Attribute Starts With Selector [name^=value]
Selects elements that have the specified attribute with a value beginning exactly with a given string.
.blur()
Bind an event handler to the "blur" JavaScript event, or trigger that event on an element.
jQuery.boxModel
Deprecated in jQuery 1.3. States if the current page, in the user's browser, is being rendered using the W3C CSS Box Model.
:button Selector
Selects all button elements and elements of type button.
.change()
Bind an event handler to the "change" JavaScript event, or trigger that event on an element.
:checkbox Selector
Selects all elements of type checkbox.
:checked Selector
Matches all elements that are checked.
Child Selector ("parent > child")
Selects all direct child elements specified by "child" of elements specified by "parent".
.children()
Get the children of each element in the set of matched elements, optionally filtered by a selector.
Class Selector (".class")
Selects all elements with the given class.
.click()
Bind an event handler to the "click" JavaScript event, or trigger that event on an element.
.clone()
Create a deep copy of the set of matched elements.
.dblclick()
Bind an event handler to the "dblclick" JavaScript event, or trigger that event on an element.
Descendant Selector ("ancestor descendant")
Selects all elements that are descendants of a given ancestor.
:disabled Selector
Selects all elements that are disabled.
jQuery.each()
A generic iterator function, which can be used to seamlessly iterate over both objects and arrays. Arrays and array-like objects with a length property (such as a function's arguments object) are iterated by numeric index, from 0 to length-1. Other objects are iterated via their named properties.
.each()
Iterate over a jQuery object, executing a function for each matched element.
Element Selector ("element")
Selects all elements with the given tag name.
.empty()
Remove all child nodes of the set of matched elements from the DOM.
:empty Selector
Select all elements that have no children (including text nodes).
:enabled Selector
Selects all elements that are enabled.
.end()
End the most recent filtering operation in the current chain and return the set of matched elements to its previous state.
:eq() Selector
Select the element at index n within the matched set.
.error()
Bind an event handler to the "error" JavaScript event.
:even Selector
Selects even elements, zero-indexed.
event.preventDefault()
If this method is called, the default action of the event will not be triggered.
event.stopPropagation()
Prevents the event from bubbling up the DOM tree, preventing any parent handlers from being notified of the event.
event.target
The DOM element that initiated the event.
event.type
Describes the nature of the event.
.fadeIn()
Display the matched elements by fading them to opaque.
.fadeOut()
Hide the matched elements by fading them to transparent.
.fadeTo()
Adjust the opacity of the matched elements.
:file Selector
Selects all elements of type file.
.find()
Get the descendants of each element in the current set of matched elements, filtered by a selector.
:first Selector
Selects the first matched element.
.focus()
Bind an event handler to the "focus" JavaScript event, or trigger that event on an element.
jQuery.get()
Load data from the server using a HTTP GET request.
.get()
Retrieve the DOM elements matched by the jQuery object.
jQuery.getJSON()
Load JSON-encoded data from the server using a GET HTTP request.
jQuery.getScript()
Load a JavaScript file from the server using a GET HTTP request, then execute it.
jQuery.grep()
Finds the elements of an array which satisfy a filter function. The original array is not affected.
:gt() Selector
Select all elements at an index greater than index within the matched set.
Has Attribute Selector [name]
Selects elements that have the specified attribute, with any value.
:hidden Selector
Selects all elements that are hidden.
.hide()
Hide the matched elements.
ID Selector ("#id")
Selects a single element with the given id attribute.
:image Selector
Selects all elements of type image.
:input Selector
Selects all input, textarea, select and button elements.
.insertAfter()
Insert every element in the set of matched elements after the target.
.insertBefore()
Insert every element in the set of matched elements before the target.
.is()
Check the current matched set of elements against a selector and return true if at least one of these elements matches the selector.
.keydown()
Bind an event handler to the "keydown" JavaScript event, or trigger that event on an element.
.keypress()
Bind an event handler to the "keypress" JavaScript event, or trigger that event on an element.
.keyup()
Bind an event handler to the "keyup" JavaScript event, or trigger that event on an element.
:last Selector
Selects the last matched element.
.length
The number of elements in the jQuery object.
.load()
Load data from the server and place the returned HTML into the matched element.
.load()
Bind an event handler to the "load" JavaScript event.
:lt() Selector
Select all elements at an index less than index within the matched set.
jQuery.map()
Translate all items in an array or array-like object to another array of items.
jQuery.merge()
Merge the contents of two arrays together into the first array.
.mousedown()
Bind an event handler to the "mousedown" JavaScript event, or trigger that event on an element.
.mouseenter()
Bind an event handler to be fired when the mouse enters an element, or trigger that handler on an element.
.mouseleave()
Bind an event handler to be fired when the mouse leaves an element, or trigger that handler on an element.
.mousemove()
Bind an event handler to the "mousemove" JavaScript event, or trigger that event on an element.
.mouseout()
Bind an event handler to the "mouseout" JavaScript event, or trigger that event on an element.
.mouseover()
Bind an event handler to the "mouseover" JavaScript event, or trigger that event on an element.
.mouseup()
Bind an event handler to the "mouseup" JavaScript event, or trigger that event on an element.
Multiple Attribute Selector [name=value][name2=value2]
Matches elements that match all of the specified attribute filters.
Multiple Selector ("selector1, selector2, selectorN")
Selects the combined results of all the specified selectors.
.next()
Get the immediately following sibling of each element in the set of matched elements. If a selector is provided, it retrieves the next sibling that matches the selector.
Next Adjacent Selector ("prev + next")
Selects all next elements matching "next" that are immediately preceded by a sibling "prev".
Next Siblings Selector ("prev ~ siblings")
Selects all sibling elements that follow after the "prev" element, have the same parent, and match the filtering "siblings" selector.
jQuery.noConflict()
Relinquish jQuery's control of the $ variable.
:not() Selector
Selects all elements that do not match the given selector.
:odd Selector
Selects odd elements, zero-indexed.
.parent()
Get the parent of each element in the current set of matched elements, optionally filtered by a selector.
:parent Selector
Select all elements that are the parent of another element, including text nodes.
.parents()
Get the ancestors of each element in the current set of matched elements, optionally filtered by a selector.
:password Selector
Selects all elements of type password.
jQuery.post()
Load data from the server using a HTTP POST request.
.prependTo()
Insert every element in the set of matched elements to the beginning of the target.
.prev()
Get the immediately preceding sibling of each element in the set of matched elements, optionally filtered by a selector.
:radio Selector
Selects all elements of type radio.
.ready()
Specify a function to execute when the DOM is fully loaded.
.remove()
Remove the set of matched elements from the DOM.
.removeAttr()
Remove an attribute from each element in the set of matched elements.
:reset Selector
Selects all elements of type reset.
.resize()
Bind an event handler to the "resize" JavaScript event, or trigger that event on an element.
.scroll()
Bind an event handler to the "scroll" JavaScript event, or trigger that event on an element.
.select()
Bind an event handler to the "select" JavaScript event, or trigger that event on an element.
:selected Selector
Selects all elements that are selected.
.serialize()
Encode a set of form elements as a string for submission.
.show()
Display the matched elements.
.siblings()
Get the siblings of each element in the set of matched elements, optionally filtered by a selector.
.size()
Return the number of DOM elements matched by the jQuery object.
.slideDown()
Display the matched elements with a sliding motion.
.slideToggle()
Display or hide the matched elements with a sliding motion.
.slideUp()
Hide the matched elements with a sliding motion.
.submit()
Bind an event handler to the "submit" JavaScript event, or trigger that event on an element.
:submit Selector
Selects all elements of type submit.
:text Selector
Selects all elements of type text.
jQuery.trim()
Remove the whitespace from the beginning and end of a string.
.unbind()
Remove a previously-attached event handler from the elements.
.unload()
Bind an event handler to the "unload" JavaScript event.
:visible Selector
Selects all elements that are visible.