Improved the categories of a bunch of docs, upped the version to 1.1.

This commit is contained in:
John Resig 2007-01-07 09:20:19 +00:00
parent f6205e054e
commit d7b73ea5c7
5 changed files with 70 additions and 70 deletions

View File

@ -13,7 +13,7 @@ jQuery.fn.extend({
* @param String url The URL of the HTML file to load. * @param String url The URL of the HTML file to load.
* @param Map params (optional) Key/value pairs that will be sent to the server. * @param Map params (optional) Key/value pairs that will be sent to the server.
* @param Function callback (optional) A function to be executed whenever the data is loaded (parameters: responseText, status and response itself). * @param Function callback (optional) A function to be executed whenever the data is loaded (parameters: responseText, status and response itself).
* @cat AJAX * @cat Ajax
*/ */
loadIfModified: function( url, params, callback ) { loadIfModified: function( url, params, callback ) {
this.load( url, params, callback, 1 ); this.load( url, params, callback, 1 );
@ -41,7 +41,7 @@ jQuery.fn.extend({
* @param String url The URL of the HTML file to load. * @param String url The URL of the HTML file to load.
* @param Object params (optional) A set of key/value pairs that will be sent as data to the server. * @param Object params (optional) A set of key/value pairs that will be sent as data to the server.
* @param Function callback (optional) A function to be executed whenever the data is loaded (parameters: responseText, status and response itself). * @param Function callback (optional) A function to be executed whenever the data is loaded (parameters: responseText, status and response itself).
* @cat AJAX * @cat Ajax
*/ */
load: function( url, params, callback, ifModified ) { load: function( url, params, callback, ifModified ) {
if ( url.constructor == Function ) if ( url.constructor == Function )
@ -105,7 +105,7 @@ jQuery.fn.extend({
* *
* @name serialize * @name serialize
* @type String * @type String
* @cat AJAX * @cat Ajax
*/ */
serialize: function() { serialize: function() {
return jQuery.param( this ); return jQuery.param( this );
@ -118,7 +118,7 @@ jQuery.fn.extend({
* @name evalScripts * @name evalScripts
* @type jQuery * @type jQuery
* @private * @private
* @cat AJAX * @cat Ajax
*/ */
evalScripts: function() { evalScripts: function() {
return this.find('script').each(function(){ return this.find('script').each(function(){
@ -152,7 +152,7 @@ if ( jQuery.browser.msie && typeof XMLHttpRequest == "undefined" )
* @name ajaxStart * @name ajaxStart
* @type jQuery * @type jQuery
* @param Function callback The function to execute. * @param Function callback The function to execute.
* @cat AJAX * @cat Ajax
*/ */
/** /**
@ -166,7 +166,7 @@ if ( jQuery.browser.msie && typeof XMLHttpRequest == "undefined" )
* @name ajaxStop * @name ajaxStop
* @type jQuery * @type jQuery
* @param Function callback The function to execute. * @param Function callback The function to execute.
* @cat AJAX * @cat Ajax
*/ */
/** /**
@ -183,7 +183,7 @@ if ( jQuery.browser.msie && typeof XMLHttpRequest == "undefined" )
* @name ajaxComplete * @name ajaxComplete
* @type jQuery * @type jQuery
* @param Function callback The function to execute. * @param Function callback The function to execute.
* @cat AJAX * @cat Ajax
*/ */
/** /**
@ -201,7 +201,7 @@ if ( jQuery.browser.msie && typeof XMLHttpRequest == "undefined" )
* @name ajaxSuccess * @name ajaxSuccess
* @type jQuery * @type jQuery
* @param Function callback The function to execute. * @param Function callback The function to execute.
* @cat AJAX * @cat Ajax
*/ */
/** /**
@ -219,7 +219,7 @@ if ( jQuery.browser.msie && typeof XMLHttpRequest == "undefined" )
* @name ajaxError * @name ajaxError
* @type jQuery * @type jQuery
* @param Function callback The function to execute. * @param Function callback The function to execute.
* @cat AJAX * @cat Ajax
*/ */
/** /**
@ -236,7 +236,7 @@ if ( jQuery.browser.msie && typeof XMLHttpRequest == "undefined" )
* @name ajaxSend * @name ajaxSend
* @type jQuery * @type jQuery
* @param Function callback The function to execute. * @param Function callback The function to execute.
* @cat AJAX * @cat Ajax
*/ */
jQuery.each( "ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","), function(i,o){ jQuery.each( "ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","), function(i,o){
jQuery.fn[o] = function(f){ jQuery.fn[o] = function(f){
@ -269,7 +269,7 @@ jQuery.extend({
* @param String url The URL of the page to load. * @param String url The URL of the page to load.
* @param Map params (optional) Key/value pairs that will be sent to the server. * @param Map params (optional) Key/value pairs that will be sent to the server.
* @param Function callback (optional) A function to be executed whenever the data is loaded. * @param Function callback (optional) A function to be executed whenever the data is loaded.
* @cat AJAX * @cat Ajax
*/ */
get: function( url, data, callback, type, ifModified ) { get: function( url, data, callback, type, ifModified ) {
// shift arguments if data argument was ommited // shift arguments if data argument was ommited
@ -311,7 +311,7 @@ jQuery.extend({
* @param String url The URL of the page to load. * @param String url The URL of the page to load.
* @param Map params (optional) Key/value pairs that will be sent to the server. * @param Map params (optional) Key/value pairs that will be sent to the server.
* @param Function callback (optional) A function to be executed whenever the data is loaded. * @param Function callback (optional) A function to be executed whenever the data is loaded.
* @cat AJAX * @cat Ajax
*/ */
getIfModified: function( url, data, callback, type ) { getIfModified: function( url, data, callback, type ) {
return jQuery.get(url, data, callback, type, 1); return jQuery.get(url, data, callback, type, 1);
@ -334,7 +334,7 @@ jQuery.extend({
* @type XMLHttpRequest * @type XMLHttpRequest
* @param String url The URL of the page to load. * @param String url The URL of the page to load.
* @param Function callback (optional) A function to be executed whenever the data is loaded. * @param Function callback (optional) A function to be executed whenever the data is loaded.
* @cat AJAX * @cat Ajax
*/ */
getScript: function( url, callback ) { getScript: function( url, callback ) {
return jQuery.get(url, null, callback, "script"); return jQuery.get(url, null, callback, "script");
@ -359,7 +359,7 @@ jQuery.extend({
* @param String url The URL of the page to load. * @param String url The URL of the page to load.
* @param Map params (optional) Key/value pairs that will be sent to the server. * @param Map params (optional) Key/value pairs that will be sent to the server.
* @param Function callback A function to be executed whenever the data is loaded. * @param Function callback A function to be executed whenever the data is loaded.
* @cat AJAX * @cat Ajax
*/ */
getJSON: function( url, data, callback ) { getJSON: function( url, data, callback ) {
return jQuery.get(url, data, callback, "json"); return jQuery.get(url, data, callback, "json");
@ -388,7 +388,7 @@ jQuery.extend({
* @param String url The URL of the page to load. * @param String url The URL of the page to load.
* @param Map params (optional) Key/value pairs that will be sent to the server. * @param Map params (optional) Key/value pairs that will be sent to the server.
* @param Function callback (optional) A function to be executed whenever the data is loaded. * @param Function callback (optional) A function to be executed whenever the data is loaded.
* @cat AJAX * @cat Ajax
*/ */
post: function( url, data, callback, type ) { post: function( url, data, callback, type ) {
return jQuery.ajax({ return jQuery.ajax({
@ -421,7 +421,7 @@ jQuery.extend({
* @name $.ajaxTimeout * @name $.ajaxTimeout
* @type undefined * @type undefined
* @param Number time How long before an AJAX request times out. * @param Number time How long before an AJAX request times out.
* @cat AJAX * @cat Ajax
*/ */
ajaxTimeout: function( timeout ) { ajaxTimeout: function( timeout ) {
jQuery.ajaxSettings.timeout = timeout; jQuery.ajaxSettings.timeout = timeout;
@ -445,7 +445,7 @@ jQuery.extend({
* @name $.ajaxSetup * @name $.ajaxSetup
* @type undefined * @type undefined
* @param Map settings Key/value pairs to use for all AJAX requests * @param Map settings Key/value pairs to use for all AJAX requests
* @cat AJAX * @cat Ajax
*/ */
ajaxSetup: function( settings ) { ajaxSetup: function( settings ) {
jQuery.extend( jQuery.ajaxSettings, settings ); jQuery.extend( jQuery.ajaxSettings, settings );
@ -580,7 +580,7 @@ jQuery.extend({
* @name $.ajax * @name $.ajax
* @type XMLHttpRequest * @type XMLHttpRequest
* @param Map properties Key/value pairs to initialize the request with. * @param Map properties Key/value pairs to initialize the request with.
* @cat AJAX * @cat Ajax
* @see ajaxSetup(Map) * @see ajaxSetup(Map)
*/ */
ajax: function( s ) { ajax: function( s ) {

View File

@ -486,7 +486,7 @@ new function(){
* @name scroll * @name scroll
* @type jQuery * @type jQuery
* @param Function fn A function to bind to the scroll event on each of the matched elements. * @param Function fn A function to bind to the scroll event on each of the matched elements.
* @cat Events/Browser * @cat Events
*/ */
/** /**
@ -501,7 +501,7 @@ new function(){
* @name submit * @name submit
* @type jQuery * @type jQuery
* @param Function fn A function to bind to the submit event on each of the matched elements. * @param Function fn A function to bind to the submit event on each of the matched elements.
* @cat Events/Form * @cat Events
*/ */
/** /**
@ -516,7 +516,7 @@ new function(){
* *
* @name submit * @name submit
* @type jQuery * @type jQuery
* @cat Events/Form * @cat Events
*/ */
/** /**
@ -529,7 +529,7 @@ new function(){
* @name focus * @name focus
* @type jQuery * @type jQuery
* @param Function fn A function to bind to the focus event on each of the matched elements. * @param Function fn A function to bind to the focus event on each of the matched elements.
* @cat Events/UI * @cat Events
*/ */
/** /**
@ -545,7 +545,7 @@ new function(){
* *
* @name focus * @name focus
* @type jQuery * @type jQuery
* @cat Events/UI * @cat Events
*/ */
/** /**
@ -558,7 +558,7 @@ new function(){
* @name keydown * @name keydown
* @type jQuery * @type jQuery
* @param Function fn A function to bind to the keydown event on each of the matched elements. * @param Function fn A function to bind to the keydown event on each of the matched elements.
* @cat Events/Keyboard * @cat Events
*/ */
/** /**
@ -571,7 +571,7 @@ new function(){
* @name dblclick * @name dblclick
* @type jQuery * @type jQuery
* @param Function fn A function to bind to the dblclick event on each of the matched elements. * @param Function fn A function to bind to the dblclick event on each of the matched elements.
* @cat Events/Mouse * @cat Events
*/ */
/** /**
@ -584,7 +584,7 @@ new function(){
* @name keypress * @name keypress
* @type jQuery * @type jQuery
* @param Function fn A function to bind to the keypress event on each of the matched elements. * @param Function fn A function to bind to the keypress event on each of the matched elements.
* @cat Events/Keyboard * @cat Events
*/ */
/** /**
@ -597,7 +597,7 @@ new function(){
* @name error * @name error
* @type jQuery * @type jQuery
* @param Function fn A function to bind to the error event on each of the matched elements. * @param Function fn A function to bind to the error event on each of the matched elements.
* @cat Events/Browser * @cat Events
*/ */
/** /**
@ -610,7 +610,7 @@ new function(){
* @name blur * @name blur
* @type jQuery * @type jQuery
* @param Function fn A function to bind to the blur event on each of the matched elements. * @param Function fn A function to bind to the blur event on each of the matched elements.
* @cat Events/UI * @cat Events
*/ */
/** /**
@ -626,7 +626,7 @@ new function(){
* *
* @name blur * @name blur
* @type jQuery * @type jQuery
* @cat Events/UI * @cat Events
*/ */
/** /**
@ -639,7 +639,7 @@ new function(){
* @name load * @name load
* @type jQuery * @type jQuery
* @param Function fn A function to bind to the load event on each of the matched elements. * @param Function fn A function to bind to the load event on each of the matched elements.
* @cat Events/Browser * @cat Events
*/ */
/** /**
@ -652,7 +652,7 @@ new function(){
* @name select * @name select
* @type jQuery * @type jQuery
* @param Function fn A function to bind to the select event on each of the matched elements. * @param Function fn A function to bind to the select event on each of the matched elements.
* @cat Events/Form * @cat Events
*/ */
/** /**
@ -665,7 +665,7 @@ new function(){
* *
* @name select * @name select
* @type jQuery * @type jQuery
* @cat Events/Form * @cat Events
*/ */
/** /**
@ -678,7 +678,7 @@ new function(){
* @name mouseup * @name mouseup
* @type jQuery * @type jQuery
* @param Function fn A function to bind to the mouseup event on each of the matched elements. * @param Function fn A function to bind to the mouseup event on each of the matched elements.
* @cat Events/Mouse * @cat Events
*/ */
/** /**
@ -691,7 +691,7 @@ new function(){
* @name unload * @name unload
* @type jQuery * @type jQuery
* @param Function fn A function to bind to the unload event on each of the matched elements. * @param Function fn A function to bind to the unload event on each of the matched elements.
* @cat Events/Browser * @cat Events
*/ */
/** /**
@ -704,7 +704,7 @@ new function(){
* @name change * @name change
* @type jQuery * @type jQuery
* @param Function fn A function to bind to the change event on each of the matched elements. * @param Function fn A function to bind to the change event on each of the matched elements.
* @cat Events/Form * @cat Events
*/ */
/** /**
@ -717,7 +717,7 @@ new function(){
* @name mouseout * @name mouseout
* @type jQuery * @type jQuery
* @param Function fn A function to bind to the mouseout event on each of the matched elements. * @param Function fn A function to bind to the mouseout event on each of the matched elements.
* @cat Events/Mouse * @cat Events
*/ */
/** /**
@ -730,7 +730,7 @@ new function(){
* @name keyup * @name keyup
* @type jQuery * @type jQuery
* @param Function fn A function to bind to the keyup event on each of the matched elements. * @param Function fn A function to bind to the keyup event on each of the matched elements.
* @cat Events/Keyboard * @cat Events
*/ */
/** /**
@ -743,7 +743,7 @@ new function(){
* @name click * @name click
* @type jQuery * @type jQuery
* @param Function fn A function to bind to the click event on each of the matched elements. * @param Function fn A function to bind to the click event on each of the matched elements.
* @cat Events/Mouse * @cat Events
*/ */
/** /**
@ -756,7 +756,7 @@ new function(){
* *
* @name click * @name click
* @type jQuery * @type jQuery
* @cat Events/Mouse * @cat Events
*/ */
/** /**
@ -769,7 +769,7 @@ new function(){
* @name resize * @name resize
* @type jQuery * @type jQuery
* @param Function fn A function to bind to the resize event on each of the matched elements. * @param Function fn A function to bind to the resize event on each of the matched elements.
* @cat Events/Browser * @cat Events
*/ */
/** /**
@ -782,7 +782,7 @@ new function(){
* @name mousemove * @name mousemove
* @type jQuery * @type jQuery
* @param Function fn A function to bind to the mousemove event on each of the matched elements. * @param Function fn A function to bind to the mousemove event on each of the matched elements.
* @cat Events/Mouse * @cat Events
*/ */
/** /**
@ -795,7 +795,7 @@ new function(){
* @name mousedown * @name mousedown
* @type jQuery * @type jQuery
* @param Function fn A function to bind to the mousedown event on each of the matched elements. * @param Function fn A function to bind to the mousedown event on each of the matched elements.
* @cat Events/Mouse * @cat Events
*/ */
/** /**
@ -808,7 +808,7 @@ new function(){
* @name mouseover * @name mouseover
* @type jQuery * @type jQuery
* @param Function fn A function to bind to the mousedown event on each of the matched elements. * @param Function fn A function to bind to the mousedown event on each of the matched elements.
* @cat Events/Mouse * @cat Events
*/ */
jQuery.each( ("blur,focus,load,resize,scroll,unload,click,dblclick," + jQuery.each( ("blur,focus,load,resize,scroll,unload,click,dblclick," +
"mousedown,mouseup,mousemove,mouseover,mouseout,change,select," + "mousedown,mouseup,mousemove,mouseover,mouseout,change,select," +

View File

@ -21,7 +21,7 @@ jQuery.fn.extend({
* @param String|Number speed A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000). * @param String|Number speed A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
* @param Function callback (optional) A function to be executed whenever the animation completes. * @param Function callback (optional) A function to be executed whenever the animation completes.
* @param String easing (optional) easing effect * @param String easing (optional) easing effect
* @cat Effects/Animations * @cat Effects
* @see hide(String|Number,Function) * @see hide(String|Number,Function)
*/ */
show: function(speed,callback){ show: function(speed,callback){
@ -51,7 +51,7 @@ jQuery.fn.extend({
* @param String|Number speed A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000). * @param String|Number speed A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
* @param Function callback (optional) A function to be executed whenever the animation completes. * @param Function callback (optional) A function to be executed whenever the animation completes.
* @param String easing (optional) easing effect * @param String easing (optional) easing effect
* @cat Effects/Animations * @cat Effects
* @see show(String|Number,Function) * @see show(String|Number,Function)
*/ */
hide: function(speed,callback){ hide: function(speed,callback){
@ -78,7 +78,7 @@ jQuery.fn.extend({
* @param String|Number speed (optional) A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000). * @param String|Number speed (optional) A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
* @param Function callback (optional) A function to be executed whenever the animation completes. * @param Function callback (optional) A function to be executed whenever the animation completes.
* @param String easing (optional) easing effect * @param String easing (optional) easing effect
* @cat Effects/Animations * @cat Effects
* @see slideUp(String|Number,Function) * @see slideUp(String|Number,Function)
* @see slideToggle(String|Number,Function) * @see slideToggle(String|Number,Function)
*/ */
@ -104,7 +104,7 @@ jQuery.fn.extend({
* @param String|Number speed (optional) A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000). * @param String|Number speed (optional) A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
* @param Function callback (optional) A function to be executed whenever the animation completes. * @param Function callback (optional) A function to be executed whenever the animation completes.
* @param String easing (optional) easing effect * @param String easing (optional) easing effect
* @cat Effects/Animations * @cat Effects
* @see slideDown(String|Number,Function) * @see slideDown(String|Number,Function)
* @see slideToggle(String|Number,Function) * @see slideToggle(String|Number,Function)
*/ */
@ -130,7 +130,7 @@ jQuery.fn.extend({
* @param String|Number speed (optional) A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000). * @param String|Number speed (optional) A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
* @param Function callback (optional) A function to be executed whenever the animation completes. * @param Function callback (optional) A function to be executed whenever the animation completes.
* @param String easing (optional) easing effect * @param String easing (optional) easing effect
* @cat Effects/Animations * @cat Effects
* @see slideDown(String|Number,Function) * @see slideDown(String|Number,Function)
* @see slideUp(String|Number,Function) * @see slideUp(String|Number,Function)
*/ */
@ -160,7 +160,7 @@ jQuery.fn.extend({
* @param String|Number speed (optional) A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000). * @param String|Number speed (optional) A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
* @param Function callback (optional) A function to be executed whenever the animation completes. * @param Function callback (optional) A function to be executed whenever the animation completes.
* @param String easing (optional) easing effect * @param String easing (optional) easing effect
* @cat Effects/Animations * @cat Effects
* @see fadeOut(String|Number,Function) * @see fadeOut(String|Number,Function)
* @see fadeTo(String|Number,Number,Function) * @see fadeTo(String|Number,Number,Function)
*/ */
@ -187,7 +187,7 @@ jQuery.fn.extend({
* @param String|Number speed (optional) A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000). * @param String|Number speed (optional) A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
* @param Function callback (optional) A function to be executed whenever the animation completes. * @param Function callback (optional) A function to be executed whenever the animation completes.
* @param String easing (optional) easing effect * @param String easing (optional) easing effect
* @cat Effects/Animations * @cat Effects
* @see fadeIn(String|Number,Function) * @see fadeIn(String|Number,Function)
* @see fadeTo(String|Number,Number,Function) * @see fadeTo(String|Number,Number,Function)
*/ */
@ -215,7 +215,7 @@ jQuery.fn.extend({
* @param Number opacity The opacity to fade to (a number from 0 to 1). * @param Number opacity The opacity to fade to (a number from 0 to 1).
* @param Function callback (optional) A function to be executed whenever the animation completes. * @param Function callback (optional) A function to be executed whenever the animation completes.
* @param String easing (optional) easing effect * @param String easing (optional) easing effect
* @cat Effects/Animations * @cat Effects
* @see fadeIn(String|Number,Function) * @see fadeIn(String|Number,Function)
* @see fadeOut(String|Number,Function) * @see fadeOut(String|Number,Function)
*/ */
@ -249,7 +249,7 @@ jQuery.fn.extend({
* @param String|Number speed (optional) A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000). * @param String|Number speed (optional) A string representing one of the three predefined speeds ("slow", "normal", or "fast") or the number of milliseconds to run the animation (e.g. 1000).
* @param Function callback (optional) A function to be executed whenever the animation completes. * @param Function callback (optional) A function to be executed whenever the animation completes.
* @param String easing (optional) easing effect * @param String easing (optional) easing effect
* @cat Effects/Animations * @cat Effects
*/ */
animate: function( prop, speed, easing, callback ) { animate: function( prop, speed, easing, callback ) {
return this.queue(function(){ return this.queue(function(){

34
src/jquery/jquery.js vendored
View File

@ -365,7 +365,7 @@ jQuery.fn = jQuery.prototype = {
* @name attr * @name attr
* @type Object * @type Object
* @param String name The name of the property to access. * @param String name The name of the property to access.
* @cat DOM * @cat DOM/Attributes
*/ */
/** /**
@ -382,7 +382,7 @@ jQuery.fn = jQuery.prototype = {
* @name attr * @name attr
* @type jQuery * @type jQuery
* @param Map properties Key/value pairs to set as object properties. * @param Map properties Key/value pairs to set as object properties.
* @cat DOM * @cat DOM/Attributes
*/ */
/** /**
@ -401,7 +401,7 @@ jQuery.fn = jQuery.prototype = {
* @type jQuery * @type jQuery
* @param String key The name of the property to set. * @param String key The name of the property to set.
* @param Object value The value to set the property to. * @param Object value The value to set the property to.
* @cat DOM * @cat DOM/Attributes
*/ */
attr: function( key, value, type ) { attr: function( key, value, type ) {
// Check to see if we're setting style values // Check to see if we're setting style values
@ -496,7 +496,7 @@ jQuery.fn = jQuery.prototype = {
* *
* @name text * @name text
* @type String * @type String
* @cat DOM * @cat DOM/Attributes
*/ */
/** /**
@ -511,7 +511,7 @@ jQuery.fn = jQuery.prototype = {
* @name text * @name text
* @type String * @type String
* @param String val The text value to set the contents of the element to. * @param String val The text value to set the contents of the element to.
* @cat DOM * @cat DOM/Attributes
*/ */
text: function(e) { text: function(e) {
// A surprisingly high number of people expect the // A surprisingly high number of people expect the
@ -1098,7 +1098,7 @@ jQuery.fn = jQuery.prototype = {
* @param Object prop1 The object that will be merged into the first. * @param Object prop1 The object that will be merged into the first.
* @param Object propN (optional) More objects to merge into the first * @param Object propN (optional) More objects to merge into the first
* @type Object * @type Object
* @cat Javascript * @cat JavaScript
*/ */
jQuery.extend = jQuery.fn.extend = function() { jQuery.extend = jQuery.fn.extend = function() {
// copy reference to target object // copy reference to target object
@ -1179,7 +1179,7 @@ jQuery.extend({
* @param Object obj The object, or array, to iterate over. * @param Object obj The object, or array, to iterate over.
* @param Function fn The function that will be executed on every object. * @param Function fn The function that will be executed on every object.
* @type Object * @type Object
* @cat Javascript * @cat JavaScript
*/ */
// args is for internal usage only // args is for internal usage only
each: function( obj, fn, args ) { each: function( obj, fn, args ) {
@ -1420,7 +1420,7 @@ jQuery.extend({
* @name $.trim * @name $.trim
* @type String * @type String
* @param String str The string to trim. * @param String str The string to trim.
* @cat Javascript * @cat JavaScript
*/ */
trim: function(t){ trim: function(t){
return t.replace(/^\s+|\s+$/g, ""); return t.replace(/^\s+|\s+$/g, "");
@ -1463,7 +1463,7 @@ jQuery.extend({
* @type Array * @type Array
* @param Array first The first array to merge. * @param Array first The first array to merge.
* @param Array second The second array to merge. * @param Array second The second array to merge.
* @cat Javascript * @cat JavaScript
*/ */
merge: function(first, second) { merge: function(first, second) {
var r = [].slice.call( first, 0 ); var r = [].slice.call( first, 0 );
@ -1498,7 +1498,7 @@ jQuery.extend({
* @param Array array The Array to find items in. * @param Array array The Array to find items in.
* @param Function fn The function to process each item against. * @param Function fn The function to process each item against.
* @param Boolean inv Invert the selection - select the opposite of the function. * @param Boolean inv Invert the selection - select the opposite of the function.
* @cat Javascript * @cat JavaScript
*/ */
grep: function(elems, fn, inv) { grep: function(elems, fn, inv) {
// If a string is passed in for the function, make a function // If a string is passed in for the function, make a function
@ -1552,7 +1552,7 @@ jQuery.extend({
* @type Array * @type Array
* @param Array array The Array to translate. * @param Array array The Array to translate.
* @param Function fn The function to process each item against. * @param Function fn The function to process each item against.
* @cat Javascript * @cat JavaScript
*/ */
map: function(elems, fn) { map: function(elems, fn) {
// If a string is passed in for the function, make a function // If a string is passed in for the function, make a function
@ -1608,7 +1608,7 @@ jQuery.extend({
* @property * @property
* @name $.browser * @name $.browser
* @type Boolean * @type Boolean
* @cat Javascript * @cat JavaScript
*/ */
/* /*
@ -1617,7 +1617,7 @@ jQuery.extend({
* @property * @property
* @name $.boxModel * @name $.boxModel
* @type Boolean * @type Boolean
* @cat Javascript * @cat JavaScript
*/ */
new function() { new function() {
var b = navigator.userAgent.toLowerCase(); var b = navigator.userAgent.toLowerCase();
@ -1878,7 +1878,7 @@ jQuery.each({
* @name removeAttr * @name removeAttr
* @type jQuery * @type jQuery
* @param String name The name of the attribute to remove. * @param String name The name of the attribute to remove.
* @cat DOM * @cat DOM/Attributes
*/ */
/** /**
@ -1935,7 +1935,7 @@ jQuery.each({
* @name addClass * @name addClass
* @type jQuery * @type jQuery
* @param String class A CSS class to add to the elements * @param String class A CSS class to add to the elements
* @cat DOM * @cat DOM/Attributes
* @see removeClass(String) * @see removeClass(String)
*/ */
@ -1953,7 +1953,7 @@ jQuery.each({
* @name removeClass * @name removeClass
* @type jQuery * @type jQuery
* @param String class (optional) A CSS class to remove from the elements * @param String class (optional) A CSS class to remove from the elements
* @cat DOM * @cat DOM/Attributes
* @see addClass(String) * @see addClass(String)
*/ */
@ -1968,7 +1968,7 @@ jQuery.each({
* @name toggleClass * @name toggleClass
* @type jQuery * @type jQuery
* @param String class A CSS class with which to toggle the elements * @param String class A CSS class with which to toggle the elements
* @cat DOM * @cat DOM/Attributes
*/ */
/** /**

View File

@ -1 +1 @@
1.0.4 1.1