/**
* Scriptdoc-file for jQuery 1.2.6
*
* Created: Jan 25, 2007 19:31:20 GMT
* Courtesy of Edwin Martin
*
* Updated: July 12, 2007
* Updated by Michelle Petersen
*
* Updated: Oct 15, 2007
* Updated by Davey Waterson
*
* Updated: Feb 26, 2008
* Updated by Michelle Petersen
*
* Updated: Aug 25, 2008
* Updated by Lori Hylan-Cho
*/
/**
* This function accepts a string containing a CSS or basic XPath selector which is then used to match a set of elements.
*
*
Alternatives
*
* $(html: String) : jQuery
*
* Create DOM elements on-the-fly from the provided String of raw HTML.
*
* $(elems: Element|Array) : jQuery
*
* Wrap jQuery functionality around a single or multiple DOM Element(s).
*
* $(fn: Function) : jQuery
*
* A shorthand for $(document).
*
* @id jQuery.$
* @alias $
* @alias jQuery
* @alias jQuery.prototype.$
* @param {String} expr
* @param {Element|jQuery} context
* @return {jQuery}
*/
function jQuery(){};
/**
* The current version of jQuery.
* @id jQuery.jquery
* @alias jQuery.prototype.jquery
* @return {String}
*/
function jQuery.jquery(){};
/**
* The number of elements in the jQuery object.
* @id jQuery.length
* @alias $.length
* @alias jQuery.prototype.length
* @return {Number}
*/
function jQuery().length(){};
/**
* The number of elements currently matched.
* @method
* @id jQuery.size
* @alias $.size
* @alias jQuery.prototype.size
* @return {Number}
*/
function jQuery.size(){};
/**
* Access all matched elements.
* or get a document via ajax
*
*
Alternatives
*
* get(num: Number) : Element
*
* Access a single matched element.
*
* get(url: String, data: Map, callback: Function) : XMLHttpRequest
*
* This is an easy way to send a simple GET request to a server without having to use
* the more complex $.ajax function.
* It allows a single callback function to be specified that will be executed when
* the request is complete (and only if the response has a successful response code).
*
If you need to have both error and success callbacks, you may want to use
* $.ajax.
*
* @id jQuery.get
* @alias $.get
* @alias jQuery.prototype.get
* @return {Array}
*/
function jQuery.get(){};
/**
* Set the jQuery object to an array of elements, while maintaining the stack.
* @id jQuery.pushStack
* @alias $.pushStack
* @alias jQuery.prototype.pushStack
* @param {Elements} elems
* @return {jQuery}
*/
function jQuery.pushStack(){};
/**
* Set the jQuery object to an array of elements.
* @id jQuery.setArray
* @alias $.setArray
* @alias jQuery.prototype.setArray
* @param {Elements} elems
* @return {jQuery}
*/
function jQuery.setArray(){};
/**
* Execute a function within the context of every matched element.
* @id jQuery.each
* @alias jQuery.prototype.each
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.each(){};
/**
* Searches every matched element for the object and returns the index of the element, if found, starting with zero.
* @id jQuery.index
* @alias $.index
* @alias jQuery.prototype.index
* @param {Element, jQuery} subject
* @return {Number}
*/
function jQuery.index(){};
/**
* Access a property on the first matched element.
*
*
Alternatives
*
* attr(properties: Map) : jQuery
*
* Set a key/value object as properties to all matched elements.
*
* attr(key: String, value: Object) : jQuery
*
* Set a single property to a value, on all matched elements.
*
* attr(key: String, value: Function) : jQuery
*
* Set a single property to a computed value, on all matched elements.
*
* @id jQuery.attr
* @alias $.attr
* @alias jQuery.prototype.attr
* @param {String} name
* @return {Object}
*/
function jQuery.attr(){};
/**
* Access a style property on the first matched element.
*
*
Alternatives
*
* css(properties: Map) : jQuery
*
* Set a key/value object as style properties to all matched elements.
*
* css(key: String, value: String|Number) : jQuery
*
* Set a single style property to a value, on all matched elements.
*
* @id jQuery.css
* @alias $.css
* @alias jQuery.prototype.css
* @param {String} name
* @return {String}
*/
function jQuery.css(){};
/**
* Get the text contents of all matched elements.
*
*
Alternatives
*
* text(val: String) : String
*
* Set the text contents of all matched elements.
*
* @id jQuery.text
* @alias $.text
* @alias jQuery.prototype.text
* @return {String}
*/
function jQuery.text(){};
/**
* Wrap all matched elements with a structure of other elements.
*
*
Alternatives
*
* wrap(elem: Element) : jQuery
*
* Wrap all matched elements with a structure of other elements.
*
* @id jQuery.wrap
* @alias $.wrap
* @alias jQuery.prototype.wrap
* @param {String} html
* @return {jQuery}
*/
function jQuery.wrap(){};
/**
* Append content to the inside of every matched element.
* @id jQuery.append
* @alias $.append
* @alias jQuery.prototype.append
* @param {} content
* @return {jQuery}
*/
function jQuery.append(){};
/**
* Prepend content to the inside of every matched element.
* @id jQuery.prepend
* @alias $.prepend
* @alias jQuery.prototype.prepend
* @param {} content
* @return {jQuery}
*/
function jQuery.prepend(){};
/**
* Insert content before each of the matched elements.
* @id jQuery.before
* @alias $.before
* @alias jQuery.prototype.before
* @param {} content
* @return {jQuery}
*/
function jQuery.before(){};
/**
* Insert content after each of the matched elements.
* @id jQuery.after
* @alias $.after
* @alias jQuery.prototype.after
* @param {} content
* @return {jQuery}
*/
function jQuery.after(){};
/**
* End the most recent 'destructive' operation, reverting the list of matched elements back to its previous state.
* @id jQuery.end
* @alias $.end
* @alias jQuery.prototype.end
* @return {jQuery}
*/
function jQuery.end(){};
/**
* Searches for all elements that match the specified expression.
* @id jQuery.find
* @alias $.find
* @alias jQuery.prototype.find
* @param {String} expr
* @return {jQuery}
*/
function jQuery.find(){};
/**
* Clone matched DOM Elements and select the clones.
*
* Calling the clone method with an argument
* is being deprecated (the clone method, as a whole, is being kept).
*
* Instead of calling .clone(false) you should now do: .clone().empty() instead.
* @id jQuery.clone
* @alias $.clone
* @alias jQuery.prototype.clone
* @return {jQuery}
*/
function jQuery.clone(){};
/**
* Removes all elements from the set of matched elements that do not match the specified expression(s).
*
*
Alternatives
*
* filter(filter: Function) : jQuery
*
* Removes all elements from the set of matched elements that do not pass the specified filter.
*
* @id jQuery.filter
* @alias $.filter
* @alias jQuery.prototype.filter
* @param {String} expression
* @return {jQuery}
*/
function jQuery.filter(){};
/**
* Removes the specified Element from the set of matched elements.
*
*
Alternatives
*
* not(expr: String) : jQuery
*
* Removes elements matching the specified expression from the set of matched elements.
*
* not(elems: jQuery) : jQuery
*
* Removes any elements inside the array of elements from the set of matched elements.
*
* @id jQuery.not
* @alias $.not
* @alias jQuery.prototype.not
* @param {Element} el
* @return {jQuery}
*/
function jQuery.not(){};
/**
* Adds more elements, matched by the given expression, to the set of matched elements.
*
*
Alternatives
*
* add(html: String) : jQuery
*
* Adds more elements, created on the fly, to the set of matched elements.
*
* add(elements: Element|Array) : jQuery
*
* Adds one or more Elements to the set of matched elements.
*
* @id jQuery.add
* @alias $.add
* @alias jQuery.prototype.add
* @param {String} expr
* @return {jQuery}
*/
function jQuery.add(){};
/**
* Checks the current selection against an expression and returns true, if at least one element of the selection fits the given expression.
* @id jQuery.is
* @alias $.is
* @alias jQuery.prototype.is
* @param {String} expr
* @return {Boolean}
*/
function jQuery.is(){};
/**
* Get the current value of the first matched element. In jQuery 1.2, a value is now returned for all elements, including selects. For multiple selects an array of values is returned.
*
*
Alternatives
*
* val(val: String) : jQuery
*
* Set the value of every matched element.
*
* val(val: Array<String>) : jQuery
*
* Check or select all the radio buttons, checkboxes, and select options that match the set of values.
*
* @id jQuery.val
* @alias $.val
* @alias jQuery.prototype.val
* @return {String}
*/
function jQuery.val(){};
/**
* Get the html contents of the first matched element.
*
*
Alternatives
*
* html(val: String) : jQuery
*
* Set the html contents of every matched element.
*
* @id jQuery.html
* @alias $.html
* @alias jQuery.prototype.html
* @return {String}
*/
function jQuery.html(){};
/**
* @id jQuery.domManip
* @alias $.domManip
* @alias jQuery.prototype.domManip
* @param {Array} args
* @param {Boolean} table
* @param {Number} dir
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.domManip(){};
/**
* Extends the jQuery object itself.
*
*
Alternatives
*
* $.extend(target: Object, prop1: Object, propN: Object) : Object
*
* Extend one object with one or more others, returning the original, modified, object.
*
* @id jQuery.extend
* @alias $.extend
* @param {Object} prop
* @return {Object}
*/
function jQuery.extend(){};
/**
* Run this function to give control of the $ variable back to whichever library first implemented it.
*
*
Alternatives
*
* $.noConflict(extreme) : jQuery
*
Revert control of both the $ and jQuery variables to their original owners.
* Use with discretion.
*
This is a more-extreme version of the simple noConflict method,
* as this one will completely undo what jQuery has introduced. This is to be
* used in an extreme case where you'd like to embed jQuery into a high-conflict
* environment.
*
NOTE: It's very likely that plugins won't work after this particular
* method has been called.
* @id jQuery.noConflict
* @alias $.noConflict
* @return {jQuery}
*/
function jQuery.noConflict(){};
/**
* A generic iterator function, which can be used to seemlessly iterate over both objects and arrays.
* @id jQuery.each
* @alias $.each
* @param {Object} obj
* @param {Function} fn
* @return {Object}
*/
function jQuery.each(){};
/**
* Remove the whitespace from the beginning and end of a string.
* @id jQuery.trim
* @alias $.trim
* @param {String} str
* @return {String}
*/
function jQuery.trim(){};
/**
* Merge two arrays together, removing all duplicates.
* @id jQuery.merge
* @alias $.merge
* @param {Array} first
* @param {Array} second
* @return {Array}
*/
function jQuery.merge(){};
/**
* Filter items out of an array, by using a filter function.
* The first argument to callback is the list item, and the second argument is the list index. The function should return a Boolean value. The "lambda-form" function feature was removed in jQuery 1.2.3 to help compatibility with other frameworks.
* @id jQuery.grep
* @alias $.grep
* @param {Array} array
* @param {Function} callback
* @param {Boolean} [invert]
* @return {Array}
*/
function jQuery.grep(){};
/**
* Translate a set of elements in the jQuery object into another set of values in an array (which may, or may not, be elements).
* @since 1.2
* @id jQuery.map
* @alias $.map
* @param {Function} callback
* @return {Array}
*/
function jQuery.map(){};
/**
* Contains flags for the useragent, read from navigator.
* @id jQuery.browser
* @alias $.browser
* @return {Boolean}
*/
function jQuery.browser(){};
/**
* Get a set of elements containing the unique parents of the matched set of elements.
* @id jQuery.parent
* @alias jQuery.prototype.parent
* @alias $.parent
* @param {String} expr
* @return {jQuery}
*/
function jQuery.parent(){};
/**
* Get a set of elements containing the unique ancestors of the matched set of elements (except for the root element).
* @id jQuery.parents
* @alias jQuery.prototype.parents
* @param {String} expr
* @return {jQuery}
*/
function jQuery.parents(){};
/**
* Get a set of elements containing the unique next siblings of each of the matched set of elements.
* @id jQuery.next
* @alias $.next
* @alias jQuery.prototype.next
* @param {String} expr
* @return {jQuery}
*/
function jQuery.next(){};
/**
* Get a set of elements containing the unique previous siblings of each of the matched set of elements.
* @id jQuery.prev
* @alias $.prev
* @alias jQuery.prototype.prev
* @param {String} expr
* @return {jQuery}
*/
function jQuery.prev(){};
/**
* Get a set of elements containing all of the unique siblings of each of the matched set of elements.
* @id jQuery.siblings
* @alias $.siblings
* @alias jQuery.prototype.siblings
* @param {String} expr
* @return {jQuery}
*/
function jQuery.siblings(){};
/**
* Get a set of elements containing all of the unique children of each of the matched set of elements.
* @id jQuery.children
* @alias $.children
* @alias jQuery.prototype.children
* @param {String} expr
* @return {jQuery}
*/
function jQuery.children(){};
/**
* Append all of the matched elements to another, specified, set of elements.
* @id jQuery.appendTo
* @alias $.appendTo
* @alias jQuery.prototype.appendTo
* @param {} content
* @return {jQuery}
*/
function jQuery.appendTo(){};
/**
* Prepend all of the matched elements to another, specified, set of elements.
* @id jQuery.prependTo
* @alias $.prependTo
* @alias jQuery.prototype.prependTo
* @param {} content
* @return {jQuery}
*/
function jQuery.prependTo(){};
/**
* Insert all of the matched elements before another, specified, set of elements.
* @id jQuery.insertBefore
* @alias $.insertBefore
* @alias jQuery.prototype.insertBefore
* @param {} content
* @return {jQuery}
*/
function jQuery.insertBefore(){};
/**
* Insert all of the matched elements after another, specified, set of elements.
* @id jQuery.insertAfter
* @alias $.insertAfter
* @alias jQuery.prototype.insertAfter
* @param {} content
* @return {jQuery}
*/
function jQuery.insertAfter(){};
/**
* Remove an attribute from each of the matched elements.
* @id jQuery.removeAttr
* @alias $.removeAttr
* @alias jQuery.prototype.removeAttr
* @param {String} name
* @return {jQuery}
*/
function jQuery.removeAttr(){};
/**
* Adds the specified class(es) to each of the set of matched elements.
* @id jQuery.addClass
* @alias $.addClass
* @alias jQuery.prototype.addClass
* @param {String} class
* @return {jQuery}
*/
function jQuery.addClass(){};
/**
* Removes all or the specified class(es) from the set of matched elements.
* @id jQuery.removeClass
* @alias $.removeClass
* @alias jQuery.prototype.removeClass
* @param {String} class
* @return {jQuery}
*/
function jQuery.removeClass(){};
/**
* Adds the specified class if it is not present, removes it if it is present.
* @id jQuery.toggleClass
* @alias $.toggleClass
* @alias jQuery.prototype.toggleClass
* @param {String} class
* @return {jQuery}
*/
function jQuery.toggleClass(){};
/**
* Removes all matched elements from the DOM.
* @id jQuery.remove
* @alias $.remove
* @alias jQuery.prototype.remove
* @param {String} expr
* @return {jQuery}
*/
function jQuery.remove(){};
/**
* Removes all child nodes from the set of matched elements.
* @id jQuery.empty
* @alias $.empty
* @alias jQuery.prototype.empty
* @return {jQuery}
*/
function jQuery.empty(){};
/**
* Reduce the set of matched elements to a single element.
* @id jQuery.eq
* @alias $.eq
* @alias jQuery.prototype.eq
* @param {Number} pos
* @return {jQuery}
*/
function jQuery.eq(){};
/**
* Reduce the set of matched elements to all elements before a given position.
*
This method is being deprecated in favor of the new .slice() method
* (which works identically to an array's slice method).
*
* You can duplicate $("div").lt(2) like so: $("div").slice(0,2);
* @id jQuery.lt
* @alias $.lt
* @alias jQuery.prototype.lt
* @param {Number} pos
* @return {jQuery}
*/
function jQuery.lt(){};
/**
* Reduce the set of matched elements to all elements after a given position.
*
This method is being deprecated in favor of the new .slice() method
* (which works identically to an array's slice method).
*
* You can duplicate $("div").gt(2) like so: $("div").slice(2);
* @id jQuery.gt
* @alias $.gt
* @alias jQuery.prototype.gt
* @param {Number} pos
* @return {jQuery}
*/
function jQuery.gt(){};
/**
* Filter the set of elements to those that contain the specified text.
*
* This method is being deprecated in favor of just using a regular .filter()
* statement.
*
* You can duplicate .contains() like so: $("div").filter(":contains(Your Text)");
* @id jQuery.contains
* @alias $.contains
* @alias jQuery.prototype.contains
* @param {String} str
* @return {jQuery}
*/
function jQuery.contains(){};
/**
* Get the current computed width, in pixels, of the first matched element.
*
*
Alternatives
*
* width(val: String|Number) : jQuery
*
* Set the CSS width of every matched element.
*
* @id jQuery.width
* @alias jQuery.prototype.width
* @alias $.width
* @return {String}
*/
function jQuery.width(){};
/**
* Get the current computed height, in pixels, of the first matched element.
*
*
Alternatives
*
* height(val: String|Number) : jQuery
*
* Set the CSS width of every matched element.
*
* @id jQuery.height
* @alias $.height
* @alias jQuery.prototype.height
* @return {String}
*/
function jQuery.height(){};
/**
* All ancestors of a given element.
* @id jQuery.parents
* @alias $.parents
* @param {Element} elem
* @return {Array}
*/
function jQuery.parents(){};
/**
* A handy, and fast, way to traverse in a particular direction and find a specific element.
* @id jQuery.nth
* @alias $.nth
* @param {DOMElement} cur
* @param {String|Number} num
* @param {String} dir
* @return {DOMElement}
*/
function jQuery.nth(){};
/**
* All elements on a specified axis.
* @id jQuery.sibling
* @alias $.sibling
* @param {Element} elem
* @return {Array}
*/
function jQuery.sibling(){};
/**
* Binds a handler to a particular event (like click) for each matched element.
* @id jQuery.bind
* @alias $.bind
* @alias jQuery.prototype.bind
* @param {String} type
* @param {Object} data
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.bind(){};
/**
* Binds a handler to a particular event (like click) for each matched element.
* @id jQuery.one
* @alias $.one
* @alias jQuery.prototype.one
* @param {String} type
* @param {Object} [data]
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.one(){};
/**
* The opposite of bind, removes a bound event from each of the matched elements.
* @id jQuery.unbind
* @alias $.unbind
* @alias jQuery.prototype.unbind
* @param {String} type
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.unbind(){};
/**
* Trigger a type of event on every matched element.
* @id jQuery.trigger
* @alias $.trigger
* @alias jQuery.prototype.trigger
* @param {String} type
* @return {jQuery}
*/
function jQuery.trigger(){};
/**
* Cycle through any number of function calls with each click. Use unbind("click" to remove the toggle event.
*
*
Alternatives
*
* toggle() : jQuery
*
* Toggles each of the set of matched elements.
*
* @id jQuery.toggle
* @alias $.toggle
* @alias jQuery.prototype.toggle
* @param {Function} fn1
* @param {Function} fn2
* @param {Function} ...
* @return {jQuery}
*/
function jQuery.toggle(){};
/**
* A method for simulating hovering (moving the mouse on, and off, an object).
* @id jQuery.hover
* @alias $.hover
* @alias jQuery.prototype.hover
* @param {Function} over
* @param {Function} out
* @return {jQuery}
*/
function jQuery.hover(){};
/**
* Bind a function to be executed whenever the DOM is ready to be traversed and manipulated.
* @id jQuery.ready
* @alias $.ready
* @alias jQuery.prototype.ready
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.ready(){};
/**
* Bind a function to the scroll event of each matched element.
* @id jQuery.scroll
* @alias $.scroll
* @alias jQuery.prototype.scroll
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.scroll(){};
/**
* Bind a function to the submit event of each matched element.
*
*
Alternatives
*
* submit() : jQuery
*
* Trigger the submit event of each matched element.
*
* @id jQuery.submit
* @alias $.submit
* @alias jQuery.prototype.submit
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.submit(){};
/**
* Bind a function to the focus event of each matched element.
*
*
Alternatives
*
* focus() : jQuery
*
* Trigger the focus event of each matched element.
*
* @id jQuery.focus
* @alias $.focus
* @alias jQuery.prototype.focus
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.focus(){};
/**
* Bind a function to the keydown event of each matched element.
* @id jQuery.keydown
* @alias $.keydown
* @alias jQuery.prototype.keydown
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.keydown(){};
/**
* Bind a function to the dblclick event of each matched element.
* @id jQuery.dblclick
* @alias $.dblclick
* @alias jQuery.prototype.dblclick
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.dblclick(){};
/**
* Bind a function to the keypress event of each matched element.
* @id jQuery.keypress
* @alias $.keypress
* @alias jQuery.prototype.keypress
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.keypress(){};
/**
* Bind a function to the error event of each matched element.
* @id jQuery.error
* @alias $.error
* @alias jQuery.prototype.error
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.error(){};
/**
* Bind a function to the blur event of each matched element.
*
*
Alternatives
*
* blur() : jQuery
*
* Trigger the blur event of each matched element.
*
* @id jQuery.blur
* @alias $.blur
* @alias jQuery.prototype.blur
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.blur(){};
/**
* Bind a function to the load event of each matched element.
*
*
Alternatives
*
* load(url: String, params: Object, callback: Function) : jQuery
*
* Load HTML from a remote file and inject it into the DOM.
*
* @id jQuery.load
* @alias $.load
* @alias jQuery.prototype.load
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.load(){};
/**
* Bind a function to the select event of each matched element.
*
*
Alternatives
*
* select() : jQuery
*
* Trigger the select event of each matched element.
*
* @id jQuery.select
* @alias $.select
* @alias jQuery.prototype.select
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.select(){};
/**
* Bind a function to the mouseup event of each matched element.
* @id jQuery.mouseup
* @alias $.mouseup
* @alias jQuery.prototype.mouseup
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.mouseup(){};
/**
* Bind a function to the unload event of each matched element.
* @id jQuery.unload
* @alias $.unload
* @alias jQuery.prototype.unload
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.unload(){};
/**
* Bind a function to the change event of each matched element.
* @id jQuery.change
* @alias $.change
* @alias jQuery.prototype.change
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.change(){};
/**
* Bind a function to the mouseout event of each matched element.
* @id jQuery.mouseout
* @alias $.mouseout
* @alias jQuery.prototype.mouseout
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.mouseout(){};
/**
* Bind a function to the keyup event of each matched element.
* @id jQuery.keyup
* @alias $.keyup
* @alias jQuery.prototype.keyup
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.keyup(){};
/**
* Bind a function to the click event of each matched element.
*
*
Alternatives
*
* click() : jQuery
*
* Trigger the click event of each matched element.
*
* @id jQuery.click
* @alias $.click
* @alias jQuery.prototype.click
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.click(){};
/**
* Bind a function to the resize event of each matched element.
* @id jQuery.resize
* @alias $.resize
* @alias jQuery.prototype.resize
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.resize(){};
/**
* Bind a function to the mousemove event of each matched element.
* @id jQuery.mousemove
* @alias $.mousemove
* @alias jQuery.prototype.mousemove
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.mousemove(){};
/**
* Bind a function to the mousedown event of each matched element.
* @id jQuery.mousedown
* @alias $.mousedown
* @alias jQuery.prototype.mousedown
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.mousedown(){};
/**
* Bind a function to the mouseover event of each matched element.
* @id jQuery.mouseover
* @alias $.mouseover
* @alias jQuery.prototype.mouseover
* @param {Function} fn
* @return {jQuery}
*/
function jQuery.mouseover(){};
/**
* Displays each of the set of matched elements if they are hidden.
*
*
Alternatives
*
* show(speed: String|Number, callback: Function) : jQuery
*
* Show all matched elements using a graceful animation and firing an optional callback after completion.
*
* @id jQuery.show
* @alias $.show
* @alias jQuery.prototype.show
* @return {jQuery}
*/
function jQuery.show(){};
/**
* Hides each of the set of matched elements if they are shown.
*
*
Alternatives
*
* hide(speed: String|Number, callback: Function) : jQuery
*
* Hide all matched elements using a graceful animation and firing an optional callback after completion.
*
* @id jQuery.hide
* @alias jQuery.prototype.hide
* @alias $.hide
* @return {jQuery}
*/
function jQuery.hide(){};
/**
* Reveal all matched elements by adjusting their height and firing an optional callback after completion.
* @id jQuery.slideDown
* @alias $.slideDown
* @alias jQuery.prototype.slideDown
* @param {String|Number} speed
* @param {Function} callback
* @return {jQuery}
*/
function jQuery.slideDown(){};
/**
* Hide all matched elements by adjusting their height and firing an optional callback after completion.
* @id jQuery.slideUp
* @alias $.slideUp
* @alias jQuery.prototype.slideUp
* @param {String|Number} speed
* @param {Function} callback
* @return {jQuery}
*/
function jQuery.slideUp(){};
/**
* Toggle the visibility of all matched elements by adjusting their height and firing an optional callback after completion.
* @id jQuery.slideToggle
* @alias $.slideToggle
* @alias jQuery.prototype.slideToggle
* @param {String|Number} speed
* @param {Function} callback
* @return {jQuery}
*/
function jQuery.slideToggle(){};
/**
* Fade in all matched elements by adjusting their opacity and firing an optional callback after completion.
* As of jQuery 1.2.6, "normal" or any other string works the same as "def" (400ms).
* @id jQuery.fadeIn
* @alias $.fadeIn
* @alias jQuery.prototype.fadeIn
* @param {String|Number} speed
* @param {Function} callback
* @return {jQuery}
*/
function jQuery.fadeIn(){};
/**
* Fade out all matched elements by adjusting their opacity and firing an optional callback after completion.
* @id jQuery.fadeOut
* @alias $.fadeOut
* @alias jQuery.prototype.fadeOut
* @param {String|Number} speed
* @param {Function} callback
* @return {jQuery}
*/
function jQuery.fadeOut(){};
/**
* Fade the opacity of all matched elements to a specified opacity and firing an optional callback after completion.
* @id jQuery.fadeTo
* @alias $.fadeTo
* @alias jQuery.prototype.fadeTo
* @param {String|Number} speed
* @param {Number} opacity
* @param {Function} callback
* @return {jQuery}
*/
function jQuery.fadeTo(){};
/**
* A function for making your own, custom, animations.
* @id jQuery.animate
* @alias $.animate
* @alias jQuery.prototype.animate
* @param {Hash} params
* @param {String|Number} speed
* @param {String} easing
* @param {Function} callback
* @return {jQuery}
*/
function jQuery.animate(){};
/**
* Load HTML from a remote file and inject it into the DOM, only
* if it's been modified by the server.
*
* This convenience method is being removed in favor of the long form use of $.ajax()
*
*
* $.ajax({ url: "some.php", ifModified: true, ...}); ** @id jQuery.loadIfModified * @alias $.loadIfModified * @alias jQuery.prototype.loadIfModified * @param {String} url * @param {Map} params * @param {Function} callback * @return {jQuery} */ function jQuery.loadIfModified(){}; /** * Serializes a set of input elements into a string of data. * @id jQuery.serialize * @alias $.serialize * @alias jQuery.prototype.serialize * @return {String} */ function jQuery.serialize(){}; /** * Evaluate all script tags inside this jQuery. * @id jQuery.evalScripts * @alias $.evalScripts * @alias jQuery.prototype.evalScripts * @return {jQuery} */ function jQuery.evalScripts(){}; /** * Attach a function to be executed whenever an AJAX request begins and there is none already active. * @id jQuery.ajaxStart * @alias $.ajaxStart * @alias jQuery.prototype.ajaxStart * @param {Function} callback * @return {jQuery} */ function jQuery.ajaxStart(){}; /** * Attach a function to be executed whenever all AJAX requests have ended. * @id jQuery.ajaxStop * @alias $.ajaxStop * @alias jQuery.prototype.ajaxStop * @param {Function} callback * @return {jQuery} */ function jQuery.ajaxStop(){}; /** * Attach a function to be executed whenever an AJAX request completes. * @id jQuery.ajaxComplete * @alias $.ajaxComplete * @alias jQuery.prototype.ajaxComplete * @param {Function} callback * @return {jQuery} */ function jQuery.ajaxComplete(){}; /** * Attach a function to be executed whenever an AJAX request completes successfully. * @id jQuery.ajaxSuccess * @alias $.ajaxSuccess * @alias jQuery.prototype.ajaxSuccess * @param {Function} callback * @return {jQuery} */ function jQuery.ajaxSuccess(){}; /** * Attach a function to be executed whenever an AJAX request fails. * @id jQuery.ajaxError * @alias $.ajaxError * @alias jQuery.prototype.ajaxError * @param {Function} callback * @return {jQuery} */ function jQuery.ajaxError(){}; /** * Attach a function to be executed before an AJAX request is sent. * @id jQuery.ajaxSend * @alias $.ajaxSend * @alias jQuery.prototype.ajaxSend * @param {Function} callback * @return {jQuery} */ function jQuery.ajaxSend(){}; /** * Load a remote page using an HTTP GET request, only if * it has been modified since it was last retrieved.
* $.ajax({ url: "some.php", ifModified: true, ...}); ** @id jQuery.getIfModified * @alias $.getIfModified * @param {String} url * @param {Map} params * @param {Function} callback * @return {XMLHttpRequest} */ function jQuery.getIfModified(){}; /** * Loads, and executes, a remote JavaScript file using an HTTP GET request. * @id jQuery.getScript * @alias $.getScript * @param {String} url * @param {Function} callback * @return {XMLHttpRequest} */ function jQuery.getScript(){}; /** * Load JSON data using an HTTP GET request. * @id jQuery.getJSON * @alias $.getJSON * @param {String} url * @param {Map} params * @param {Function} callback * @return {XMLHttpRequest} */ function jQuery.getJSON(){}; /** * Load a remote page using an HTTP POST request. * @id jQuery.post * @alias $.post * @param {String} url * @param {Map} params * @param {Function} callback * @return {XMLHttpRequest} */ function jQuery.post(){}; /** * Set the timeout of all AJAX requests to a specific amount of time.
$.ajaxSetup({timeout: 3000});* @id jQuery.ajaxTimeout * @alias $.ajaxTimeout * @param {Number} time * @return {undefined} */ function jQuery.ajaxTimeout(){}; /** * Setup global settings for AJAX requests. * @id jQuery.ajaxSetup * @alias $.ajaxSetup * @param {Map} settings * @return {undefined} */ function jQuery.ajaxSetup(){}; /** * Load a remote page using an HTTP request. * @id jQuery.ajax * @alias $.ajax * @param {Map} properties * @return {XMLHttpRequest} */ function jQuery.ajax(){}; /** * Add the previous selection to the current selection. *