jquery-mobile/experiments/api-viewer/index.html
Kin Blas 161f5e6ae3 Removed jquery.js from js/index.php and updated all html doc/experiments/test files that incuded "js/" so that they also include jquery.js manually.
This makes our include model match the include model on the CDN, and allows devs to make use of mobileinit for debugging some of the samples since that must be set up after jquery.js, but before jquery-mobile.
2011-01-20 11:26:12 -08:00

398 lines
No EOL
50 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>jQuery Mobile Framework - Listview Examples</title>
<link rel="stylesheet" href="../../themes/default/" />
<script type="text/javascript" src="../../js/jquery.js"></script>
<script type="text/javascript" src="../../js/"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>jQuery API</h1>
</div>
<div data-role="content">
<ul data-role="listview">
<li>Ajax
<ul>
<li><h3><a href="docs/jQuery.ajax/index.html">jQuery.ajax()</a></h3><p>Perform an asynchronous HTTP (Ajax) request.</p></li>
<li><h3><a href="docs/ajaxComplete/index.html">.ajaxComplete()</a></h3><p>Register a handler to be called when Ajax requests complete. This is an Ajax Event.</p></li>
<li><h3><a href="docs/ajaxError/index.html">.ajaxError()</a></h3><p>Register a handler to be called when Ajax requests complete with an error. This is an Ajax Event.</p></li>
<li><h3><a href="docs/ajaxSend/index.html">.ajaxSend()</a></h3><p>Show a message before an Ajax request is sent.</p></li>
<li><h3><a href="docs/jQuery.ajaxSetup/index.html">jQuery.ajaxSetup()</a></h3><p>Set default values for future Ajax requests.</p></li>
<li><h3><a href="docs/ajaxStart/index.html">.ajaxStart()</a></h3><p>Register a handler to be called when the first Ajax request begins. This is an Ajax Event.</p></li>
<li><h3><a href="docs/ajaxStop/index.html">.ajaxStop()</a></h3><p>Hide a loading message after all the Ajax requests have stopped.</p></li>
<li><h3><a href="docs/ajaxSuccess/index.html">.ajaxSuccess()</a></h3><p>Show a message when an Ajax request completes successfully.</p></li>
<li><h3><a href="docs/jQuery.get/index.html">jQuery.get()</a></h3><p>Load data from the server using a HTTP GET request.</p></li>
<li><h3><a href="docs/jQuery.getJSON/index.html">jQuery.getJSON()</a></h3><p>Load JSON-encoded data from the server using a GET HTTP request.</p></li>
<li><h3><a href="docs/jQuery.getScript/index.html">jQuery.getScript()</a></h3><p>Load a JavaScript file from the server using a GET HTTP request, then execute it.</p></li>
<li><h3><a href="docs/load/index.html">.load()</a></h3><p>Load data from the server and place the returned HTML into the matched element.</p></li>
<li><h3><a href="docs/jQuery.param/index.html">jQuery.param()</a></h3><p>Create a serialized representation of an array or object, suitable for use in a URL query string or Ajax request. </p></li>
<li><h3><a href="docs/jQuery.post/index.html">jQuery.post()</a></h3><p>Load data from the server using a HTTP POST request.</p></li>
<li><h3><a href="docs/serialize/index.html">.serialize()</a></h3><p>Encode a set of form elements as a string for submission.</p></li>
<li><h3><a href="docs/serializeArray/index.html">.serializeArray()</a></h3><p>Encode a set of form elements as an array of names and values.</p></li>
</ul>
</li>
<li>Attributes
<ul>
<li><h3><a href="docs/addClass/index.html">.addClass()</a></h3><p>Adds the specified class(es) to each of the set of matched elements.</p></li>
<li><h3><a href="docs/attr/index.html">.attr()</a></h3><p>Get the value of an attribute for the first element in the set of matched elements.</p></li>
<li><h3><a href="docs/hasClass/index.html">.hasClass()</a></h3><p>Determine whether any of the matched elements are assigned the given class.</p></li>
<li><h3><a href="docs/html/index.html">.html()</a></h3><p>Get the HTML contents of the first element in the set of matched elements.</p></li>
<li><h3><a href="docs/removeAttr/index.html">.removeAttr()</a></h3><p>Remove an attribute from each element in the set of matched elements.</p></li>
<li><h3><a href="docs/removeClass/index.html">.removeClass()</a></h3><p>Remove a single class, multiple classes, or all classes from each element in the set of matched elements.</p></li>
<li><h3><a href="docs/text/index.html">.text()</a></h3><p>Get the combined text contents of each element in the set of matched elements, including their descendants.</p></li>
<li><h3><a href="docs/toggleClass/index.html">.toggleClass()</a></h3><p>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.</p></li>
<li><h3><a href="docs/val/index.html">.val()</a></h3><p>Get the current value of the first element in the set of matched elements.</p></li>
</ul>
</li>
<li>Core
<ul>
<li><h3><a href="docs/jQuery/index.html">jQuery()</a></h3><p>Accepts a string containing a CSS selector which is then used to match a set of elements.</p></li>
<li><h3><a href="docs/jQuery.noConflict/index.html">jQuery.noConflict()</a></h3><p>Relinquish jQuery's control of the $ variable.</p></li>
</ul>
</li>
<li>CSS
<ul>
<li><h3><a href="docs/addClass/index.html">.addClass()</a></h3><p>Adds the specified class(es) to each of the set of matched elements.</p></li>
<li><h3><a href="docs/css/index.html">.css()</a></h3><p>Get the value of a style property for the first element in the set of matched elements.</p></li>
<li><h3><a href="docs/hasClass/index.html">.hasClass()</a></h3><p>Determine whether any of the matched elements are assigned the given class.</p></li>
<li><h3><a href="docs/height/index.html">.height()</a></h3><p>Get the current computed height for the first element in the set of matched elements.</p></li>
<li><h3><a href="docs/innerHeight/index.html">.innerHeight()</a></h3><p>Get the current computed height for the first element in the set of matched elements, including padding but not border.</p></li>
<li><h3><a href="docs/innerWidth/index.html">.innerWidth()</a></h3><p>Get the current computed width for the first element in the set of matched elements, including padding but not border.</p></li>
<li><h3><a href="docs/offset/index.html">.offset()</a></h3><p>Get the current coordinates of the first element in the set of matched elements, relative to the document.</p></li>
<li><h3><a href="docs/outerHeight/index.html">.outerHeight()</a></h3><p>Get the current computed height for the first element in the set of matched elements, including padding and border.</p></li>
<li><h3><a href="docs/outerWidth/index.html">.outerWidth()</a></h3><p>Get the current computed width for the first element in the set of matched elements, including padding and border.</p></li>
<li><h3><a href="docs/position/index.html">.position()</a></h3><p>Get the current coordinates of the first element in the set of matched elements, relative to the offset parent.</p></li>
<li><h3><a href="docs/removeClass/index.html">.removeClass()</a></h3><p>Remove a single class, multiple classes, or all classes from each element in the set of matched elements.</p></li>
<li><h3><a href="docs/scrollLeft/index.html">.scrollLeft()</a></h3><p>Get the current horizontal position of the scroll bar for the first element in the set of matched elements.</p></li>
<li><h3><a href="docs/scrollTop/index.html">.scrollTop()</a></h3><p>Get the current vertical position of the scroll bar for the first element in the set of matched elements.</p></li>
<li><h3><a href="docs/toggleClass/index.html">.toggleClass()</a></h3><p>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.</p></li>
<li><h3><a href="docs/width/index.html">.width()</a></h3><p>Get the current computed width for the first element in the set of matched elements.</p></li>
</ul>
</li>
<li>Data
<ul>
<li><h3><a href="docs/clearQueue/index.html">.clearQueue()</a></h3><p>Remove from the queue all items that have not yet been run.</p></li>
<li><h3><a href="docs/data/index.html">.data()</a></h3><p>Store arbitrary data associated with the matched elements.</p></li>
<li><h3><a href="docs/jQuery.data/index.html">jQuery.data()</a></h3><p>Store arbitrary data associated with the specified element.</p></li>
<li><h3><a href="docs/dequeue/index.html">.dequeue()</a></h3><p>Execute the next function on the queue for the matched elements.</p></li>
<li><h3><a href="docs/jQuery.dequeue/index.html">jQuery.dequeue()</a></h3><p>Execute the next function on the queue for the matched element.</p></li>
<li><h3><a href="docs/queue/index.html">.queue()</a></h3><p>Show the queue of functions to be executed on the matched elements.</p></li>
<li><h3><a href="docs/jQuery.queue/index.html">jQuery.queue()</a></h3><p>Show the queue of functions to be executed on the matched element.</p></li>
<li><h3><a href="docs/removeData/index.html">.removeData()</a></h3><p>Remove a previously-stored piece of data.</p></li>
<li><h3><a href="docs/jQuery.removeData/index.html">jQuery.removeData()</a></h3><p>Remove a previously-stored piece of data.</p></li>
</ul>
</li>
<li>Dimensions
<ul>
<li><h3><a href="docs/height/index.html">.height()</a></h3><p>Get the current computed height for the first element in the set of matched elements.</p></li>
<li><h3><a href="docs/innerHeight/index.html">.innerHeight()</a></h3><p>Get the current computed height for the first element in the set of matched elements, including padding but not border.</p></li>
<li><h3><a href="docs/innerWidth/index.html">.innerWidth()</a></h3><p>Get the current computed width for the first element in the set of matched elements, including padding but not border.</p></li>
<li><h3><a href="docs/outerHeight/index.html">.outerHeight()</a></h3><p>Get the current computed height for the first element in the set of matched elements, including padding and border.</p></li>
<li><h3><a href="docs/outerWidth/index.html">.outerWidth()</a></h3><p>Get the current computed width for the first element in the set of matched elements, including padding and border.</p></li>
<li><h3><a href="docs/width/index.html">.width()</a></h3><p>Get the current computed width for the first element in the set of matched elements.</p></li>
</ul>
</li>
<li>Effects
<ul>
<li><h3><a href="docs/animate/index.html">.animate()</a></h3><p>Perform a custom animation of a set of CSS properties.</p></li>
<li><h3><a href="docs/clearQueue/index.html">.clearQueue()</a></h3><p>Remove from the queue all items that have not yet been run.</p></li>
<li><h3><a href="docs/delay/index.html">.delay()</a></h3><p>Set a timer to delay execution of subsequent items in the queue.</p></li>
<li><h3><a href="docs/dequeue/index.html">.dequeue()</a></h3><p>Execute the next function on the queue for the matched elements.</p></li>
<li><h3><a href="docs/fadeIn/index.html">.fadeIn()</a></h3><p>Display the matched elements by fading them to opaque.</p></li>
<li><h3><a href="docs/fadeOut/index.html">.fadeOut()</a></h3><p>Hide the matched elements by fading them to transparent.</p></li>
<li><h3><a href="docs/fadeTo/index.html">.fadeTo()</a></h3><p>Adjust the opacity of the matched elements.</p></li>
<li><h3><a href="docs/jQuery.fx.off/index.html">jQuery.fx.off</a></h3><p>Globally disable all animations.</p></li>
<li><h3><a href="docs/hide/index.html">.hide()</a></h3><p>Hide the matched elements.</p></li>
<li><h3><a href="docs/queue/index.html">.queue()</a></h3><p>Show the queue of functions to be executed on the matched elements.</p></li>
<li><h3><a href="docs/show/index.html">.show()</a></h3><p>Display the matched elements.</p></li>
<li><h3><a href="docs/slideDown/index.html">.slideDown()</a></h3><p>Display the matched elements with a sliding motion.</p></li>
<li><h3><a href="docs/slideToggle/index.html">.slideToggle()</a></h3><p>Display or hide the matched elements with a sliding motion.</p></li>
<li><h3><a href="docs/slideUp/index.html">.slideUp()</a></h3><p>Hide the matched elements with a sliding motion.</p></li>
<li><h3><a href="docs/stop/index.html">.stop()</a></h3><p>Stop the currently-running animation on the matched elements.</p></li>
<li><h3><a href="docs/toggle/index.html">.toggle()</a></h3><p>Bind two or more handlers to the matched elements, to be executed on alternate clicks.</p></li>
</ul>
</li>
<li>Events
<ul>
<li><h3><a href="docs/bind/index.html">.bind()</a></h3><p>Attach a handler to an event for the elements.</p></li>
<li><h3><a href="docs/blur/index.html">.blur()</a></h3><p>Bind an event handler to the "blur" JavaScript event, or trigger that event on an element.</p></li>
<li><h3><a href="docs/change/index.html">.change()</a></h3><p>Bind an event handler to the "change" JavaScript event, or trigger that event on an element.</p></li>
<li><h3><a href="docs/click/index.html">.click()</a></h3><p>Bind an event handler to the "click" JavaScript event, or trigger that event on an element.</p></li>
<li><h3><a href="docs/dblclick/index.html">.dblclick()</a></h3><p>Bind an event handler to the "dblclick" JavaScript event, or trigger that event on an element.</p></li>
<li><h3><a href="docs/delegate/index.html">.delegate()</a></h3><p>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.</p></li>
<li><h3><a href="docs/die/index.html">.die()</a></h3><p>Remove all event handlers previously attached using .live() from the elements.</p></li>
<li><h3><a href="docs/error/index.html">.error()</a></h3><p>Bind an event handler to the "error" JavaScript event.</p></li>
<li><h3><a href="docs/event.currentTarget/index.html">event.currentTarget</a></h3><p> The current DOM element within the event bubbling phase. </p></li>
<li><h3><a href="docs/event.data/index.html">event.data</a></h3><p> Contains the optional data passed to jQuery.fn.bind when the current executing handler was bound. </p></li>
<li><h3><a href="docs/event.isDefaultPrevented/index.html">event.isDefaultPrevented()</a></h3><p>Returns whether event.preventDefault() was ever called on this event object. </p></li>
<li><h3><a href="docs/event.isImmediatePropagationStopped/index.html">event.isImmediatePropagationStopped()</a></h3><p> Returns whether event.stopImmediatePropagation() was ever called on this event object. </p></li>
<li><h3><a href="docs/event.isPropagationStopped/index.html">event.isPropagationStopped()</a></h3><p> Returns whether event.stopPropagation() was ever called on this event object. </p></li>
<li><h3><a href="docs/event.pageX/index.html">event.pageX</a></h3><p>The mouse position relative to the left edge of the document. </p></li>
<li><h3><a href="docs/event.pageY/index.html">event.pageY</a></h3><p>The mouse position relative to the top edge of the document. </p></li>
<li><h3><a href="docs/event.preventDefault/index.html">event.preventDefault()</a></h3><p> If this method is called, the default action of the event will not be triggered. </p></li>
<li><h3><a href="docs/event.relatedTarget/index.html">event.relatedTarget</a></h3><p> The other DOM element involved in the event, if any. </p></li>
<li><h3><a href="docs/event.result/index.html">event.result</a></h3><p> This attribute contains the last value returned by an event handler that was triggered by this event, unless the value was undefined. </p></li>
<li><h3><a href="docs/event.stopImmediatePropagation/index.html">event.stopImmediatePropagation()</a></h3><p>Prevents other event handlers from being called.</p></li>
<li><h3><a href="docs/event.stopPropagation/index.html">event.stopPropagation()</a></h3><p> This method prevents the event from bubbling up the DOM tree, preventing any parent handlers from being notified of the event. </p></li>
<li><h3><a href="docs/event.target/index.html">event.target</a></h3><p> The DOM element that initiated the event. </p></li>
<li><h3><a href="docs/event.timeStamp/index.html">event.timeStamp</a></h3><p> This attribute returns the number of milliseconds since January 1, 1970, when the event is triggered. </p></li>
<li><h3><a href="docs/event.type/index.html">event.type</a></h3><p> Describes the nature of the event. </p></li>
<li><h3><a href="docs/event.which/index.html">event.which</a></h3><p> For key or button events, this attribute indicates the specific button or key that was pressed. </p></li>
<li><h3><a href="docs/focus/index.html">.focus()</a></h3><p>Bind an event handler to the "focus" JavaScript event, or trigger that event on an element.</p></li>
<li><h3><a href="docs/focusin/index.html">.focusin()</a></h3><p>Bind an event handler to the "focusin" JavaScript event.</p></li>
<li><h3><a href="docs/focusout/index.html">.focusout()</a></h3><p>Bind an event handler to the "focusout" JavaScript event.</p></li>
<li><h3><a href="docs/hover/index.html">.hover()</a></h3><p>Bind two handlers to the matched elements, to be executed when the mouse pointer enters and leaves the elements.</p></li>
<li><h3><a href="docs/keydown/index.html">.keydown()</a></h3><p>Bind an event handler to the "keydown" JavaScript event, or trigger that event on an element.</p></li>
<li><h3><a href="docs/keypress/index.html">.keypress()</a></h3><p>Bind an event handler to the "keypress" JavaScript event, or trigger that event on an element.</p></li>
<li><h3><a href="docs/keyup/index.html">.keyup()</a></h3><p>Bind an event handler to the "keyup" JavaScript event, or trigger that event on an element.</p></li>
<li><h3><a href="docs/live/index.html">.live()</a></h3><p>Attach a handler to the event for all elements which match the current selector, now or in the future.</p></li>
<li><h3><a href="docs/load-event/index.html">.load()</a></h3><p>Bind an event handler to the "load" JavaScript event.</p></li>
<li><h3><a href="docs/mousedown/index.html">.mousedown()</a></h3><p>Bind an event handler to the "mousedown" JavaScript event, or trigger that event on an element.</p></li>
<li><h3><a href="docs/mouseenter/index.html">.mouseenter()</a></h3><p>Bind an event handler to be fired when the mouse enters an element, or trigger that handler on an element.</p></li>
<li><h3><a href="docs/mouseleave/index.html">.mouseleave()</a></h3><p>Bind an event handler to be fired when the mouse leaves an element, or trigger that handler on an element.</p></li>
<li><h3><a href="docs/mousemove/index.html">.mousemove()</a></h3><p>Bind an event handler to the "mousemove" JavaScript event, or trigger that event on an element.</p></li>
<li><h3><a href="docs/mouseout/index.html">.mouseout()</a></h3><p>Bind an event handler to the "mouseout" JavaScript event, or trigger that event on an element.</p></li>
<li><h3><a href="docs/mouseover/index.html">.mouseover()</a></h3><p>Bind an event handler to the "mouseover" JavaScript event, or trigger that event on an element.</p></li>
<li><h3><a href="docs/mouseup/index.html">.mouseup()</a></h3><p>Bind an event handler to the "mouseup" JavaScript event, or trigger that event on an element.</p></li>
<li><h3><a href="docs/one/index.html">.one()</a></h3><p>Attach a handler to an event for the elements. The handler is executed at most once.</p></li>
<li><h3><a href="docs/jQuery.proxy/index.html">jQuery.proxy()</a></h3><p>Takes a function and returns a new one that will always have a particular context.</p></li>
<li><h3><a href="docs/ready/index.html">.ready()</a></h3><p>Specify a function to execute when the DOM is fully loaded.</p></li>
<li><h3><a href="docs/resize/index.html">.resize()</a></h3><p>Bind an event handler to the "resize" JavaScript event, or trigger that event on an element.</p></li>
<li><h3><a href="docs/scroll/index.html">.scroll()</a></h3><p>Bind an event handler to the "scroll" JavaScript event, or trigger that event on an element.</p></li>
<li><h3><a href="docs/select/index.html">.select()</a></h3><p>Bind an event handler to the "select" JavaScript event, or trigger that event on an element.</p></li>
<li><h3><a href="docs/submit/index.html">.submit()</a></h3><p>Bind an event handler to the "submit" JavaScript event, or trigger that event on an element.</p></li>
<li><h3><a href="docs/toggle/index.html">.toggle()</a></h3><p>Bind two or more handlers to the matched elements, to be executed on alternate clicks.</p></li>
<li><h3><a href="docs/trigger/index.html">.trigger()</a></h3><p>Execute all handlers and behaviors attached to the matched elements for the given event type.</p></li>
<li><h3><a href="docs/triggerHandler/index.html">.triggerHandler()</a></h3><p>Execute all handlers attached to an element for an event.</p></li>
<li><h3><a href="docs/unbind/index.html">.unbind()</a></h3><p>Remove a previously-attached event handler from the elements.</p></li>
<li><h3><a href="docs/undelegate/index.html">.undelegate()</a></h3><p>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.</p></li>
<li><h3><a href="docs/unload/index.html">.unload()</a></h3><p>Bind an event handler to the "unload" JavaScript event.</p></li>
</ul>
</li>
<li>Forms
<ul>
<li><h3><a href="docs/blur/index.html">.blur()</a></h3><p>Bind an event handler to the "blur" JavaScript event, or trigger that event on an element.</p></li>
<li><h3><a href="docs/change/index.html">.change()</a></h3><p>Bind an event handler to the "change" JavaScript event, or trigger that event on an element.</p></li>
<li><h3><a href="docs/focus/index.html">.focus()</a></h3><p>Bind an event handler to the "focus" JavaScript event, or trigger that event on an element.</p></li>
<li><h3><a href="docs/jQuery.param/index.html">jQuery.param()</a></h3><p>Create a serialized representation of an array or object, suitable for use in a URL query string or Ajax request. </p></li>
<li><h3><a href="docs/select/index.html">.select()</a></h3><p>Bind an event handler to the "select" JavaScript event, or trigger that event on an element.</p></li>
<li><h3><a href="docs/serialize/index.html">.serialize()</a></h3><p>Encode a set of form elements as a string for submission.</p></li>
<li><h3><a href="docs/serializeArray/index.html">.serializeArray()</a></h3><p>Encode a set of form elements as an array of names and values.</p></li>
<li><h3><a href="docs/submit/index.html">.submit()</a></h3><p>Bind an event handler to the "submit" JavaScript event, or trigger that event on an element.</p></li>
<li><h3><a href="docs/val/index.html">.val()</a></h3><p>Get the current value of the first element in the set of matched elements.</p></li>
</ul>
</li>
<li>Manipulation
<ul>
<li><h3><a href="docs/addClass/index.html">.addClass()</a></h3><p>Adds the specified class(es) to each of the set of matched elements.</p></li>
<li><h3><a href="docs/after/index.html">.after()</a></h3><p>Insert content, specified by the parameter, after each element in the set of matched elements.</p></li>
<li><h3><a href="docs/append/index.html">.append()</a></h3><p>Insert content, specified by the parameter, to the end of each element in the set of matched elements.</p></li>
<li><h3><a href="docs/appendTo/index.html">.appendTo()</a></h3><p>Insert every element in the set of matched elements to the end of the target.</p></li>
<li><h3><a href="docs/attr/index.html">.attr()</a></h3><p>Get the value of an attribute for the first element in the set of matched elements.</p></li>
<li><h3><a href="docs/before/index.html">.before()</a></h3><p>Insert content, specified by the parameter, before each element in the set of matched elements.</p></li>
<li><h3><a href="docs/clone/index.html">.clone()</a></h3><p>Create a copy of the set of matched elements.</p></li>
<li><h3><a href="docs/css/index.html">.css()</a></h3><p>Get the value of a style property for the first element in the set of matched elements.</p></li>
<li><h3><a href="docs/detach/index.html">.detach()</a></h3><p>Remove the set of matched elements from the DOM.</p></li>
<li><h3><a href="docs/empty/index.html">.empty()</a></h3><p>Remove all child nodes of the set of matched elements from the DOM.</p></li>
<li><h3><a href="docs/hasClass/index.html">.hasClass()</a></h3><p>Determine whether any of the matched elements are assigned the given class.</p></li>
<li><h3><a href="docs/height/index.html">.height()</a></h3><p>Get the current computed height for the first element in the set of matched elements.</p></li>
<li><h3><a href="docs/html/index.html">.html()</a></h3><p>Get the HTML contents of the first element in the set of matched elements.</p></li>
<li><h3><a href="docs/innerHeight/index.html">.innerHeight()</a></h3><p>Get the current computed height for the first element in the set of matched elements, including padding but not border.</p></li>
<li><h3><a href="docs/innerWidth/index.html">.innerWidth()</a></h3><p>Get the current computed width for the first element in the set of matched elements, including padding but not border.</p></li>
<li><h3><a href="docs/insertAfter/index.html">.insertAfter()</a></h3><p>Insert every element in the set of matched elements after the target.</p></li>
<li><h3><a href="docs/insertBefore/index.html">.insertBefore()</a></h3><p>Insert every element in the set of matched elements before the target.</p></li>
<li><h3><a href="docs/offset/index.html">.offset()</a></h3><p>Get the current coordinates of the first element in the set of matched elements, relative to the document.</p></li>
<li><h3><a href="docs/outerHeight/index.html">.outerHeight()</a></h3><p>Get the current computed height for the first element in the set of matched elements, including padding and border.</p></li>
<li><h3><a href="docs/outerWidth/index.html">.outerWidth()</a></h3><p>Get the current computed width for the first element in the set of matched elements, including padding and border.</p></li>
<li><h3><a href="docs/position/index.html">.position()</a></h3><p>Get the current coordinates of the first element in the set of matched elements, relative to the offset parent.</p></li>
<li><h3><a href="docs/prepend/index.html">.prepend()</a></h3><p>Insert content, specified by the parameter, to the beginning of each element in the set of matched elements.</p></li>
<li><h3><a href="docs/prependTo/index.html">.prependTo()</a></h3><p>Insert every element in the set of matched elements to the beginning of the target.</p></li>
<li><h3><a href="docs/remove/index.html">.remove()</a></h3><p>Remove the set of matched elements from the DOM.</p></li>
<li><h3><a href="docs/removeAttr/index.html">.removeAttr()</a></h3><p>Remove an attribute from each element in the set of matched elements.</p></li>
<li><h3><a href="docs/removeClass/index.html">.removeClass()</a></h3><p>Remove a single class, multiple classes, or all classes from each element in the set of matched elements.</p></li>
<li><h3><a href="docs/replaceAll/index.html">.replaceAll()</a></h3><p>A selector expression indicating which element(s) to replace.</p></li>
<li><h3><a href="docs/replaceWith/index.html">.replaceWith()</a></h3><p>Replace each element in the set of matched elements with the provided new content.</p></li>
<li><h3><a href="docs/scrollLeft/index.html">.scrollLeft()</a></h3><p>Get the current horizontal position of the scroll bar for the first element in the set of matched elements.</p></li>
<li><h3><a href="docs/scrollTop/index.html">.scrollTop()</a></h3><p>Get the current vertical position of the scroll bar for the first element in the set of matched elements.</p></li>
<li><h3><a href="docs/text/index.html">.text()</a></h3><p>Get the combined text contents of each element in the set of matched elements, including their descendants.</p></li>
<li><h3><a href="docs/toggleClass/index.html">.toggleClass()</a></h3><p>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.</p></li>
<li><h3><a href="docs/unwrap/index.html">.unwrap()</a></h3><p>Remove the parents of the set of matched elements from the DOM, leaving the matched elements in their place.</p></li>
<li><h3><a href="docs/val/index.html">.val()</a></h3><p>Get the current value of the first element in the set of matched elements.</p></li>
<li><h3><a href="docs/width/index.html">.width()</a></h3><p>Get the current computed width for the first element in the set of matched elements.</p></li>
<li><h3><a href="docs/wrap/index.html">.wrap()</a></h3><p>Wrap an HTML structure around each element in the set of matched elements.</p></li>
<li><h3><a href="docs/wrapAll/index.html">.wrapAll()</a></h3><p>Wrap an HTML structure around all elements in the set of matched elements.</p></li>
<li><h3><a href="docs/wrapInner/index.html">.wrapInner()</a></h3><p>Wrap an HTML structure around the content of each element in the set of matched elements.</p></li>
</ul>
</li>
<li>Miscellaneous
<ul>
<li><h3><a href="docs/data/index.html">.data()</a></h3><p>Store arbitrary data associated with the matched elements.</p></li>
<li><h3><a href="docs/each/index.html">.each()</a></h3><p>Iterate over a jQuery object, executing a function for each matched element. </p></li>
<li><h3><a href="docs/get/index.html">.get()</a></h3><p>Retrieve the DOM elements matched by the jQuery object.</p></li>
<li><h3><a href="docs/index/index.html">.index()</a></h3><p>Search for a given element from among the matched elements.</p></li>
<li><h3><a href="docs/jQuery.noConflict/index.html">jQuery.noConflict()</a></h3><p>Relinquish jQuery's control of the $ variable.</p></li>
<li><h3><a href="docs/jQuery.param/index.html">jQuery.param()</a></h3><p>Create a serialized representation of an array or object, suitable for use in a URL query string or Ajax request. </p></li>
<li><h3><a href="docs/removeData/index.html">.removeData()</a></h3><p>Remove a previously-stored piece of data.</p></li>
<li><h3><a href="docs/size/index.html">.size()</a></h3><p>Return the number of DOM elements matched by the jQuery object.</p></li>
<li><h3><a href="docs/toArray/index.html">.toArray()</a></h3><p>Retrieve all the DOM elements contained in the jQuery set, as an array.</p></li>
</ul>
</li>
<li>Offset
<ul>
<li><h3><a href="docs/offset/index.html">.offset()</a></h3><p>Get the current coordinates of the first element in the set of matched elements, relative to the document.</p></li>
<li><h3><a href="docs/position/index.html">.position()</a></h3><p>Get the current coordinates of the first element in the set of matched elements, relative to the offset parent.</p></li>
<li><h3><a href="docs/scrollLeft/index.html">.scrollLeft()</a></h3><p>Get the current horizontal position of the scroll bar for the first element in the set of matched elements.</p></li>
<li><h3><a href="docs/scrollTop/index.html">.scrollTop()</a></h3><p>Get the current vertical position of the scroll bar for the first element in the set of matched elements.</p></li>
</ul>
</li>
<li>Plugin Authoring
<ul>
<li><h3><a href="docs/context/index.html">.context</a></h3><p>The DOM node context originally passed to jQuery(); if none was passed then context will likely be the document.</p></li>
<li><h3><a href="docs/jQuery.error/index.html">jQuery.error</a></h3><p>Takes a string and throws an exception containing it.</p></li>
<li><h3><a href="docs/jQuery.pushStack/index.html">jQuery.pushStack()</a></h3><p>Add a collection of DOM elements onto the jQuery stack.</p></li>
<li><h3><a href="docs/selector/index.html">.selector</a></h3><p>A selector representing selector originally passed to jQuery().</p></li>
</ul>
</li>
<li>Properties
<ul>
<li><h3><a href="docs/jQuery.browser/index.html">jQuery.browser</a></h3><p>We recommend against using this property, please try to use feature detection instead (see jQuery.support). 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.</p></li>
<li><h3><a href="docs/context/index.html">.context</a></h3><p>The DOM node context originally passed to jQuery(); if none was passed then context will likely be the document.</p></li>
<li><h3><a href="docs/jQuery.fx.off/index.html">jQuery.fx.off</a></h3><p>Globally disable all animations.</p></li>
<li><h3><a href="docs/length/index.html">.length</a></h3><p>The number of elements in the jQuery object.</p></li>
<li><h3><a href="docs/selector/index.html">.selector</a></h3><p>A selector representing selector originally passed to jQuery().</p></li>
<li><h3><a href="docs/jQuery.support/index.html">jQuery.support</a></h3><p>A collection of properties that represent the presence of different browser features or bugs.</p></li>
</ul>
</li>
<li>Selectors
<ul>
<li><h3><a href="docs/all-selector/index.html">All Selector ("*")</a></h3><p>Selects all elements.</p></li>
<li><h3><a href="docs/animated-selector/index.html">:animated Selector</a></h3><p>Select all elements that are in the progress of an animation at the time the selector is run.</p></li>
<li><h3><a href="docs/attribute-contains-prefix-selector/index.html">Attribute Contains Prefix Selector [name|=value]</a></h3><p>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 (-).</p></li>
<li><h3><a href="docs/attribute-contains-selector/index.html">Attribute Contains Selector [name*=value]</a></h3><p>Selects elements that have the specified attribute with a value containing the a given substring.</p></li>
<li><h3><a href="docs/attribute-contains-word-selector/index.html">Attribute Contains Word Selector [name~=value]</a></h3><p>Selects elements that have the specified attribute with a value containing a given word, delimited by spaces.</p></li>
<li><h3><a href="docs/attribute-ends-with-selector/index.html">Attribute Ends With Selector [name$=value]</a></h3><p>Selects elements that have the specified attribute with a value ending exactly with a given string.</p></li>
<li><h3><a href="docs/attribute-equals-selector/index.html">Attribute Equals Selector [name=value]</a></h3><p>Selects elements that have the specified attribute with a value exactly equal to a certain value.</p></li>
<li><h3><a href="docs/attribute-not-equal-selector/index.html">Attribute Not Equal Selector [name!=value]</a></h3><p>Select elements that either don't have the specified attribute, or do have the specified attribute but not with a certain value.</p></li>
<li><h3><a href="docs/attribute-starts-with-selector/index.html">Attribute Starts With Selector [name^=value]</a></h3><p>Selects elements that have the specified attribute with a value beginning exactly with a given string.</p></li>
<li><h3><a href="docs/button-selector/index.html">:button Selector</a></h3><p>Selects all button elements and elements of type button.</p></li>
<li><h3><a href="docs/checkbox-selector/index.html">:checkbox Selector</a></h3><p>Selects all elements of type checkbox.</p></li>
<li><h3><a href="docs/checked-selector/index.html">:checked Selector</a></h3><p>Matches all elements that are checked.</p></li>
<li><h3><a href="docs/child-selector/index.html">Child Selector ("parent &gt; child")</a></h3><p>Selects all direct child elements specified by "child" of elements specified by "parent".</p></li>
<li><h3><a href="docs/class-selector/index.html">Class Selector (".class")</a></h3><p>Selects all elements with the given class. </p></li>
<li><h3><a href="docs/contains-selector/index.html">:contains() Selector</a></h3><p>Select all elements that contain the specified text.</p></li>
<li><h3><a href="docs/descendant-selector/index.html">Descendant Selector ("ancestor descendant")</a></h3><p>Selects all elements that are descendants of a given ancestor.</p></li>
<li><h3><a href="docs/disabled-selector/index.html">:disabled Selector</a></h3><p>Selects all elements that are disabled.</p></li>
<li><h3><a href="docs/element-selector/index.html">Element Selector ("element")</a></h3><p>Selects all elements with the given tag name.</p></li>
<li><h3><a href="docs/empty-selector/index.html">:empty Selector</a></h3><p>Select all elements that have no children (including text nodes).</p></li>
<li><h3><a href="docs/enabled-selector/index.html">:enabled Selector</a></h3><p>Selects all elements that are enabled.</p></li>
<li><h3><a href="docs/eq-selector/index.html">:eq() Selector</a></h3><p>Select the element at index n within the matched set.</p></li>
<li><h3><a href="docs/even-selector/index.html">:even Selector</a></h3><p>Selects even elements, zero-indexed. See also odd.</p></li>
<li><h3><a href="docs/file-selector/index.html">:file Selector</a></h3><p>Selects all elements of type file.</p></li>
<li><h3><a href="docs/first-child-selector/index.html">:first-child Selector</a></h3><p>Selects all elements that are the first child of their parent.</p></li>
<li><h3><a href="docs/first-selector/index.html">:first Selector</a></h3><p>Selects the first matched element.</p></li>
<li><h3><a href="docs/gt-selector/index.html">:gt() Selector</a></h3><p>Select all elements at an index greater than index within the matched set.</p></li>
<li><h3><a href="docs/has-attribute-selector/index.html">Has Attribute Selector [name]</a></h3><p>Selects elements that have the specified attribute, with any value. </p></li>
<li><h3><a href="docs/has-selector/index.html">:has() Selector</a></h3><p>Selects elements which contain at least one element that matches the specified selector.</p></li>
<li><h3><a href="docs/header-selector/index.html">:header Selector</a></h3><p>Selects all elements that are headers, like h1, h2, h3 and so on.</p></li>
<li><h3><a href="docs/hidden-selector/index.html">:hidden Selector</a></h3><p>Selects all elements that are hidden.</p></li>
<li><h3><a href="docs/id-selector/index.html">ID Selector ("#id")</a></h3><p>Selects a single element with the given id attribute.</p></li>
<li><h3><a href="docs/image-selector/index.html">:image Selector</a></h3><p>Selects all elements of type image.</p></li>
<li><h3><a href="docs/input-selector/index.html">:input Selector</a></h3><p>Selects all input, textarea, select and button elements.</p></li>
<li><h3><a href="docs/last-child-selector/index.html">:last-child Selector</a></h3><p>Selects all elements that are the last child of their parent.</p></li>
<li><h3><a href="docs/last-selector/index.html">:last Selector</a></h3><p>Selects the last matched element.</p></li>
<li><h3><a href="docs/lt-selector/index.html">:lt() Selector</a></h3><p>Select all elements at an index less than index within the matched set.</p></li>
<li><h3><a href="docs/multiple-attribute-selector/index.html">Multiple Attribute Selector [name=value][name2=value2]</a></h3><p>Matches elements that match all of the specified attribute filters.</p></li>
<li><h3><a href="docs/multiple-selector/index.html">Multiple Selector ("selector1, selector2, selectorN")</a></h3><p>Selects the combined results of all the specified selectors.</p></li>
<li><h3><a href="docs/next-adjacent-Selector/index.html">Next Adjacent Selector ("prev + next")</a></h3><p>Selects all next elements matching "next" that are immediately preceded by a sibling "prev".</p></li>
<li><h3><a href="docs/next-siblings-selector/index.html">Next Siblings Selector ("prev ~ siblings")</a></h3><p>Selects all sibling elements that follow after the "prev" element, have the same parent, and match the filtering "siblings" selector.</p></li>
<li><h3><a href="docs/not-selector/index.html">:not() Selector</a></h3><p>Selects all elements that do not match the given selector.</p></li>
<li><h3><a href="docs/nth-child-selector/index.html">:nth-child Selector</a></h3><p>Selects all elements that are the nth-child of their parent.</p></li>
<li><h3><a href="docs/odd-selector/index.html">:odd Selector</a></h3><p>Selects odd elements, zero-indexed. See also even.</p></li>
<li><h3><a href="docs/only-child-selector/index.html">:only-child Selector</a></h3><p>Selects all elements that are the only child of their parent.</p></li>
<li><h3><a href="docs/parent-selector/index.html">:parent Selector</a></h3><p>Select all elements that are the parent of another element, including text nodes.</p></li>
<li><h3><a href="docs/password-selector/index.html">:password Selector</a></h3><p>Selects all elements of type password.</p></li>
<li><h3><a href="docs/radio-selector/index.html">:radio Selector</a></h3><p>Selects all elements of type radio.</p></li>
<li><h3><a href="docs/reset-selector/index.html">:reset Selector</a></h3><p>Selects all elements of type reset.</p></li>
<li><h3><a href="docs/selected-selector/index.html">:selected Selector</a></h3><p>Selects all elements that are selected.</p></li>
<li><h3><a href="docs/submit-selector/index.html">:submit Selector</a></h3><p>Selects all elements of type submit.</p></li>
<li><h3><a href="docs/text-selector/index.html">:text Selector</a></h3><p>Selects all elements of type text.</p></li>
<li><h3><a href="docs/visible-selector/index.html">:visible Selector</a></h3><p>Selects all elements that are visible.</p></li>
</ul>
</li>
<li>Traversing
<ul>
<li><h3><a href="docs/add/index.html">.add()</a></h3><p>Add elements to the set of matched elements.</p></li>
<li><h3><a href="docs/andSelf/index.html">.andSelf()</a></h3><p>Add the previous set of elements on the stack to the current set.</p></li>
<li><h3><a href="docs/children/index.html">.children()</a></h3><p>Get the children of each element in the set of matched elements, optionally filtered by a selector.</p></li>
<li><h3><a href="docs/closest/index.html">.closest()</a></h3><p>Get the first element that matches the selector, beginning at the current element and progressing up through the DOM tree.</p></li>
<li><h3><a href="docs/contents/index.html">.contents()</a></h3><p>Get the children of each element in the set of matched elements, including text nodes.</p></li>
<li><h3><a href="docs/end/index.html">.end()</a></h3><p>End the most recent filtering operation in the current chain and return the set of matched elements to its previous state.</p></li>
<li><h3><a href="docs/eq/index.html">.eq()</a></h3><p>Reduce the set of matched elements to the one at the specified index.</p></li>
<li><h3><a href="docs/filter/index.html">.filter()</a></h3><p>Reduce the set of matched elements to those that match the selector or pass the function's test. </p></li>
<li><h3><a href="docs/find/index.html">.find()</a></h3><p>Get the descendants of each element in the current set of matched elements, filtered by a selector.</p></li>
<li><h3><a href="docs/first/index.html">.first()</a></h3><p>Reduce the set of matched elements to the first in the set.</p></li>
<li><h3><a href="docs/has/index.html">.has()</a></h3><p>Reduce the set of matched elements to those that have a descendant that matches the selector or DOM element.</p></li>
<li><h3><a href="docs/is/index.html">.is()</a></h3><p>Check the current matched set of elements against a selector and return true if at least one of these elements matches the selector.</p></li>
<li><h3><a href="docs/last/index.html">.last()</a></h3><p>Reduce the set of matched elements to the final one in the set.</p></li>
<li><h3><a href="docs/map/index.html">.map()</a></h3><p>Pass each element in the current matched set through a function, producing a new jQuery object containing the return values.</p></li>
<li><h3><a href="docs/next/index.html">.next()</a></h3><p>Get the immediately following sibling of each element in the set of matched elements, optionally filtered by a selector.</p></li>
<li><h3><a href="docs/nextAll/index.html">.nextAll()</a></h3><p>Get all following siblings of each element in the set of matched elements, optionally filtered by a selector.</p></li>
<li><h3><a href="docs/nextUntil/index.html">.nextUntil()</a></h3><p>Get all following siblings of each element up to but not including the element matched by the selector.</p></li>
<li><h3><a href="docs/not/index.html">.not()</a></h3><p>Remove elements from the set of matched elements.</p></li>
<li><h3><a href="docs/offsetParent/index.html">.offsetParent()</a></h3><p>Get the closest ancestor element that is positioned.</p></li>
<li><h3><a href="docs/parent/index.html">.parent()</a></h3><p>Get the parent of each element in the current set of matched elements, optionally filtered by a selector.</p></li>
<li><h3><a href="docs/parents/index.html">.parents()</a></h3><p>Get the ancestors of each element in the current set of matched elements, optionally filtered by a selector.</p></li>
<li><h3><a href="docs/parentsUntil/index.html">.parentsUntil()</a></h3><p>Get the ancestors of each element in the current set of matched elements, up to but not including the element matched by the selector.</p></li>
<li><h3><a href="docs/prev/index.html">.prev()</a></h3><p>Get the immediately preceding sibling of each element in the set of matched elements, optionally filtered by a selector.</p></li>
<li><h3><a href="docs/prevAll/index.html">.prevAll()</a></h3><p>Get all preceding siblings of each element in the set of matched elements, optionally filtered by a selector.</p></li>
<li><h3><a href="docs/prevUntil/index.html">.prevUntil()</a></h3><p>Get all preceding siblings of each element up to but not including the element matched by the selector.</p></li>
<li><h3><a href="docs/siblings/index.html">.siblings()</a></h3><p>Get the siblings of each element in the set of matched elements, optionally filtered by a selector.</p></li>
<li><h3><a href="docs/slice/index.html">.slice()</a></h3><p>Reduce the set of matched elements to a subset specified by a range of indices.</p></li>
</ul>
</li>
<li>Utilities
<ul>
<li><h3><a href="docs/jQuery.boxModel/index.html">jQuery.boxModel</a></h3><p>Deprecated in jQuery 1.3 (see jQuery.support). States if the current page, in the user's browser, is being rendered using the W3C CSS Box Model.</p></li>
<li><h3><a href="docs/jQuery.browser/index.html">jQuery.browser</a></h3><p>We recommend against using this property, please try to use feature detection instead (see jQuery.support). 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.</p></li>
<li><h3><a href="docs/clearQueue/index.html">.clearQueue()</a></h3><p>Remove from the queue all items that have not yet been run.</p></li>
<li><h3><a href="docs/jQuery.contains/index.html">jQuery.contains()</a></h3><p>Check to see if a DOM node is within another DOM node.</p></li>
<li><h3><a href="docs/jQuery.data/index.html">jQuery.data()</a></h3><p>Store arbitrary data associated with the specified element.</p></li>
<li><h3><a href="docs/dequeue/index.html">.dequeue()</a></h3><p>Execute the next function on the queue for the matched elements.</p></li>
<li><h3><a href="docs/jQuery.dequeue/index.html">jQuery.dequeue()</a></h3><p>Execute the next function on the queue for the matched element.</p></li>
<li><h3><a href="docs/jQuery.each/index.html">jQuery.each()</a></h3><p>Iterates through the array displaying each number as both a word and numeral</p></li>
<li><h3><a href="docs/jQuery.extend/index.html">jQuery.extend()</a></h3><p>Merge the contents of two or more objects together into the first object.</p></li>
<li><h3><a href="docs/jQuery.globalEval/index.html">jQuery.globalEval()</a></h3><p>Execute some JavaScript code globally.</p></li>
<li><h3><a href="docs/jQuery.grep/index.html">jQuery.grep()</a></h3><p>Finds the elements of an array which satisfy a filter function. The original array is not affected.</p></li>
<li><h3><a href="docs/jQuery.inArray/index.html">jQuery.inArray()</a></h3><p>Search for a specified value within an array and return its index (or -1 if not found).</p></li>
<li><h3><a href="docs/jQuery.isArray/index.html">jQuery.isArray()</a></h3><p>Determine whether the argument is an array.</p></li>
<li><h3><a href="docs/jQuery.isEmptyObject/index.html">jQuery.isEmptyObject()</a></h3><p>Check to see if an object is empty (contains no properties).</p></li>
<li><h3><a href="docs/jQuery.isFunction/index.html">jQuery.isFunction()</a></h3><p>Determine if the argument passed is a Javascript function object. </p></li>
<li><h3><a href="docs/jQuery.isPlainObject/index.html">jQuery.isPlainObject()</a></h3><p>Check to see if an object is a plain object (created using "{}" or "new Object").</p></li>
<li><h3><a href="docs/jQuery.isXMLDoc/index.html">jQuery.isXMLDoc()</a></h3><p>Check to see if a DOM node is within an XML document (or is an XML document).</p></li>
<li><h3><a href="docs/jQuery.makeArray/index.html">jQuery.makeArray()</a></h3><p>Convert an array-like object into a true JavaScript array.</p></li>
<li><h3><a href="docs/jQuery.map/index.html">jQuery.map()</a></h3><p>Translate all items in an array or array-like object to another array of items.</p></li>
<li><h3><a href="docs/jQuery.merge/index.html">jQuery.merge()</a></h3><p>Merge the contents of two arrays together into the first array. </p></li>
<li><h3><a href="docs/jQuery.noop/index.html">jQuery.noop()</a></h3><p>An empty function.</p></li>
<li><h3><a href="docs/jQuery.parseJSON/index.html">jQuery.parseJSON</a></h3><p>Takes a well-formed JSON string and returns the resulting JavaScript object.</p></li>
<li><h3><a href="docs/jQuery.proxy/index.html">jQuery.proxy()</a></h3><p>Takes a function and returns a new one that will always have a particular context.</p></li>
<li><h3><a href="docs/queue/index.html">.queue()</a></h3><p>Show the queue of functions to be executed on the matched elements.</p></li>
<li><h3><a href="docs/jQuery.queue/index.html">jQuery.queue()</a></h3><p>Show the queue of functions to be executed on the matched element.</p></li>
<li><h3><a href="docs/jQuery.removeData/index.html">jQuery.removeData()</a></h3><p>Remove a previously-stored piece of data.</p></li>
<li><h3><a href="docs/jQuery.support/index.html">jQuery.support</a></h3><p>A collection of properties that represent the presence of different browser features or bugs.</p></li>
<li><h3><a href="docs/jQuery.trim/index.html">jQuery.trim()</a></h3><p>Remove the whitespace from the beginning and end of a string.</p></li>
<li><h3><a href="docs/jQuery.unique/index.html">jQuery.unique()</a></h3><p>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.</p></li>
</ul>
</li>
</ul>
</div>
</div>
</body>
</html>