6 rheaders = /^(.*?):\s*(.*?)\r?$/mg, // IE leaves an \r character at EOL
7 rinput = /^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,
8 rnoContent = /^(?:GET|HEAD)$/,
10 rscript = /<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,
11 rselectTextarea = /^(?:select|textarea)/i,
12 rts = /([?&])_=[^&]*/,
13 rurl = /^(\w+:)?\/\/([^\/?#:]+)(?::(\d+))?/,
17 sliceFunc = Array.prototype.slice,
19 // Keep a copy of the old load method
20 _load = jQuery.fn.load;
23 load: function( url, params, callback ) {
24 if ( typeof url !== "string" && _load ) {
25 return _load.apply( this, arguments );
27 // Don't do a request if no elements are being requested
28 } else if ( !this.length ) {
32 var off = url.indexOf(" ");
34 var selector = url.slice(off, url.length);
35 url = url.slice(0, off);
38 // Default to a GET request
41 // If the second parameter was provided
44 if ( jQuery.isFunction( params ) ) {
45 // We assume that it's the callback
49 // Otherwise, build a param string
50 } else if ( typeof params === "object" ) {
51 params = jQuery.param( params, jQuery.ajaxSettings.traditional );
58 // Request the remote document
64 // Complete callback (responseText is used internally)
65 complete: function( jXHR, status, responseText ) {
66 // Store the response as specified by the jXHR object
67 responseText = jXHR.responseText;
68 // If successful, inject the HTML into all the matched elements
69 if ( jXHR.isResolved() ) {
70 // #4825: Get the actual response in case
71 // a dataFilter is present in ajaxSettings
72 jXHR.done(function( r ) {
75 // See if a selector was specified
77 // Create a dummy div to hold the results
79 // inject the contents of the document in, removing the scripts
80 // to avoid any 'Permission Denied' errors in IE
81 .append(responseText.replace(rscript, ""))
83 // Locate the specified elements
86 // If not, just inject the full result
91 self.each( callback, [responseText, status, jXHR] );
99 serialize: function() {
100 return jQuery.param(this.serializeArray());
103 serializeArray: function() {
104 return this.map(function(){
105 return this.elements ? jQuery.makeArray(this.elements) : this;
108 return this.name && !this.disabled &&
109 (this.checked || rselectTextarea.test(this.nodeName) ||
110 rinput.test(this.type));
112 .map(function(i, elem){
113 var val = jQuery(this).val();
117 jQuery.isArray(val) ?
118 jQuery.map( val, function(val, i){
119 return { name: elem.name, value: val.replace(rCRLF, "\r\n") };
121 { name: elem.name, value: val.replace(rCRLF, "\r\n") };
126 // Attach a bunch of functions for handling common AJAX events
127 jQuery.each( "ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "), function(i,o){
128 jQuery.fn[o] = function(f){
129 return this.bind(o, f);
133 jQuery.each( [ "get", "post" ], function( i, method ) {
134 jQuery[ method ] = function( url, data, callback, type ) {
135 // shift arguments if data argument was omited
136 if ( jQuery.isFunction( data ) ) {
137 type = type || callback;
154 getScript: function( url, callback ) {
155 return jQuery.get(url, null, callback, "script");
158 getJSON: function( url, data, callback ) {
159 return jQuery.get(url, data, callback, "json");
162 ajaxSetup: function( settings ) {
163 jQuery.extend( true, jQuery.ajaxSettings, settings );
171 contentType: "application/x-www-form-urlencoded",
185 return new window.XMLHttpRequest();
189 xml: "application/xml, text/xml",
192 json: "application/json, text/javascript",
203 // 1) They are useful to introduce custom dataTypes (see transport/jsonp for an example)
204 // 2) These are called:
205 // * BEFORE asking for a transport
206 // * AFTER param serialization (s.data is a string if s.processData is true)
207 // 3) key is the dataType
208 // 4) the catchall symbol "*" can be used
209 // 5) execution will start with transport dataType and THEN continue down to "*" if needed
212 // Transports bindings
213 // 1) key is the dataType
214 // 2) the catchall symbol "*" can be used
215 // 3) selection will start with transport dataType and THEN go to "*" if needed
218 // List of data converters
219 // 1) key format is "source_type destination_type" (a single space in-between)
220 // 2) the catchall symbol "*" can be used for source_type
223 // Convert anything to text
224 "* text": window.String,
226 // Text to html (true = no transformation)
229 // Evaluate text as a json expression
230 "text json": jQuery.parseJSON,
233 "text xml": jQuery.parseXML
238 // (s is used internally)
239 ajax: function( url , options , s ) {
242 if ( arguments.length === 1 ) {
244 url = options ? options.url : undefined;
247 // Force options to be an object
248 options = options || {};
250 // Get the url if provided separately
251 options.url = url || options.url;
253 // Create the final options object
254 s = jQuery.extend( true , {} , jQuery.ajaxSettings , options );
256 // We force the original context
257 // (plain objects used as context get extended)
258 s.context = options.context;
261 jQuery_lastModified = jQuery.lastModified,
262 jQuery_etag = jQuery.etag,
263 // Callbacks contexts
264 callbackContext = s.context || s,
265 globalEventContext = s.context ? jQuery( s.context ) : jQuery.event,
267 deferred = jQuery.Deferred(),
268 completeDeferred = jQuery._Deferred(),
269 // Status-dependent callbacks
270 statusCode = s.statusCode || {},
271 // Headers (they are sent all at once)
274 responseHeadersString,
280 // Cross-domain detection vars
281 loc = document.location,
293 setRequestHeader: function(name,value) {
295 requestHeaders[ name.toLowerCase() ] = value;
301 getAllResponseHeaders: function() {
302 return state === 2 ? responseHeadersString : null;
305 // Builds headers hashtable if needed
306 // (match is used internally)
307 getResponseHeader: function( key , match ) {
313 if ( responseHeaders === undefined ) {
315 responseHeaders = {};
317 if ( typeof responseHeadersString === "string" ) {
319 while( ( match = rheaders.exec( responseHeadersString ) ) ) {
320 responseHeaders[ match[ 1 ].toLowerCase() ] = match[ 2 ];
324 return responseHeaders[ key.toLowerCase() ];
327 // Cancel the request
328 abort: function( statusText ) {
329 if ( transport && state !== 2 ) {
330 transport.abort( statusText || "abort" );
331 done( 0 , statusText );
337 // Callback for when everything is done
338 // It is defined here because jslint complains if it is declared
339 // at the end of the function (which would be more logical and readable)
340 function done( status , statusText , response , headers) {
347 // State is "done" now
351 jXHR.readyState = status ? 4 : 0;
353 // Cache response headers
354 responseHeadersString = headers || "";
356 // Clear timeout if it exists
357 if ( timeoutTimer ) {
358 clearTimeout(timeoutTimer);
363 // and ifModified status
364 ifModified = s.ifModified,
373 // If successful, handle type chaining
374 if ( status >= 200 && status < 300 || status === 304 ) {
376 // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
377 if ( s.ifModified ) {
379 var lastModified = jXHR.getResponseHeader("Last-Modified"),
380 etag = jXHR.getResponseHeader("Etag");
383 jQuery_lastModified[ s.url ] = lastModified;
386 jQuery_etag[ s.url ] = etag;
391 if ( status === 304 ) {
393 // Set the statusText accordingly
394 statusText = "notmodified";
401 // Set the statusText accordingly
402 statusText = "success";
404 // Chain data conversions and determine the final value
405 // (if an exception is thrown in the process, it'll be notified as an error)
413 // Conversion function
415 // Conversion functions (when text is used in-between)
418 // Local references to dataTypes & converters
419 dataTypes = s.dataTypes,
420 converters = s.converters,
421 // DataType to responseXXX field mapping
427 // For each dataType in the chain
428 for( i = 0 ; i < dataTypes.length ; i++ ) {
430 current = dataTypes[ i ];
432 // If a responseXXX field for this dataType exists
433 // and if it hasn't been set yet
434 if ( responses[ current ] ) {
436 jXHR[ "response" + responses[ current ] ] = response;
438 responses[ current ] = 0;
441 // If this is not the first element
444 // Get the dataType to convert from
445 prev = dataTypes[ i - 1 ];
447 // If no catch-all and dataTypes are actually different
448 if ( prev !== "*" && current !== "*" && prev !== current ) {
451 conv = converters[ prev + " " + current ] ||
452 converters[ "* " + current ];
456 // If there is no direct converter and none of the dataTypes is text
457 if ( ! conv && prev !== "text" && current !== "text" ) {
458 // Try with text in-between
459 conv1 = converters[ prev + " text" ] || converters[ "* text" ];
460 conv2 = converters[ "text " + current ];
461 // Revert back to a single converter
462 // if one of the converter is an equivalence
463 if ( conv1 === true ) {
465 } else if ( conv2 === true ) {
469 // If we found no converter, dispatch an error
470 if ( ! ( conv || conv1 && conv2 ) ) {
473 // If found converter is not an equivalence
474 if ( conv !== true ) {
475 // Convert with 1 or 2 converters accordingly
476 response = conv ? conv( response ) : conv2( conv1( response ) );
479 // If it is the first element of the chain
480 // and we have a dataFilter
481 } else if ( s.dataFilter ) {
482 // Apply the dataFilter
483 response = s.dataFilter( response , current );
484 // Get dataTypes again in case the filter changed them
485 dataTypes = s.dataTypes;
490 // We have a real success
494 // If an exception was thrown
497 // We have a parsererror
498 statusText = "parsererror";
504 // if not success, mark it as an error
507 error = statusText = statusText || "error";
509 // Set responseText if needed
511 jXHR.responseText = response;
515 // Set data for the fake xhr object
516 jXHR.status = status;
517 jXHR.statusText = statusText;
521 deferred.fire( callbackContext , [ success , statusText , jXHR ] );
523 deferred.fireReject( callbackContext , [ jXHR , statusText , error ] );
526 // Status-dependent callbacks
527 jXHR.statusCode( statusCode );
530 globalEventContext.trigger( "ajax" + ( isSuccess ? "Success" : "Error" ) ,
531 [ jXHR , s , isSuccess ? success : error ] );
535 completeDeferred.fire( callbackContext, [ jXHR , statusText ] );
538 globalEventContext.trigger( "ajaxComplete" , [ jXHR , s] );
539 // Handle the global AJAX counter
540 if ( ! --jQuery.active ) {
541 jQuery.event.trigger( "ajaxStop" );
547 deferred.promise( jXHR );
548 jXHR.success = jXHR.done;
549 jXHR.error = jXHR.fail;
550 jXHR.complete = completeDeferred.done;
552 // Status-dependent callbacks
553 jXHR.statusCode = function( map ) {
555 var resolved = jXHR.isResolved(),
557 if ( resolved || jXHR.isRejected() ) {
558 tmp = map[ jXHR.status ];
560 if ( map === statusCode ) {
561 delete statusCode[ jXHR.status ];
563 jXHR[ resolved ? "done" : "fail" ]( tmp );
567 statusCode[ tmp ] = [ statusCode[ tmp ] , map[ tmp ] ];
574 // Remove hash character (#7531: and string promotion)
575 s.url = ( "" + s.url ).replace( rhash , "" );
577 // Uppercase the type
578 s.type = s.type.toUpperCase();
580 // Determine if request has content
581 s.hasContent = ! rnoContent.test( s.type );
583 // Extract dataTypes list
584 s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().split( /\s+/ );
586 // Determine if a cross-domain request is in order
587 if ( ! s.crossDomain ) {
588 parts = rurl.exec( s.url.toLowerCase() );
591 ( parts[ 1 ] && parts[ 1 ] != loc.protocol ||
592 parts[ 2 ] != loc.hostname ||
593 ( parts[ 3 ] || 80 ) != ( loc.port || 80 ) )
597 // Convert data if not already a string
598 if ( s.data && s.processData && typeof s.data != "string" ) {
599 s.data = jQuery.param( s.data , s.traditional );
603 transport = jQuery.ajaxPrefilter( s , options ).ajaxTransport( s );
605 // Watch for a new set of requests
606 if ( s.global && jQuery.active++ === 0 ) {
607 jQuery.event.trigger( "ajaxStart" );
610 // If no transport, we auto-abort
613 done( 0 , "transport not found" );
618 // More options handling for requests with no content
619 if ( ! s.hasContent ) {
621 // If data is available, append data to url
623 s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.data;
626 // Add anti-cache in url if needed
627 if ( s.cache === false ) {
629 var ts = jQuery.now(),
630 // try replacing _= if it is there
631 ret = s.url.replace( rts , "$1_=" + ts );
633 // if nothing was replaced, add timestamp to the end
634 s.url = ret + ( (ret == s.url ) ? ( rquery.test( s.url ) ? "&" : "?" ) + "_=" + ts : "");
638 // Set the correct header, if data is being sent
639 if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
640 requestHeaders[ "content-type" ] = s.contentType;
643 // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
644 if ( s.ifModified ) {
645 if ( jQuery_lastModified[ s.url ] ) {
646 requestHeaders[ "if-modified-since" ] = jQuery_lastModified[ s.url ];
648 if ( jQuery_etag[ s.url ] ) {
649 requestHeaders[ "if-none-match" ] = jQuery_etag[ s.url ];
653 // Set the Accepts header for the server, depending on the dataType
654 requestHeaders.accept = s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?
655 s.accepts[ s.dataTypes[ 0 ] ] + ( s.dataTypes[ 0 ] !== "*" ? ", */*; q=0.01" : "" ) :
658 // Check for headers option
659 for ( i in s.headers ) {
660 requestHeaders[ i.toLowerCase() ] = s.headers[ i ];
663 // Allow custom headers/mimetypes and early abort
664 if ( s.beforeSend && ( s.beforeSend.call( callbackContext , jXHR , s ) === false || state === 2 ) ) {
666 // Abort if not done already
672 // Set state as sending
676 // Install callbacks on deferreds
677 for ( i in { success:1, error:1, complete:1 } ) {
683 globalEventContext.trigger( "ajaxSend" , [ jXHR , s ] );
687 if ( s.async && s.timeout > 0 ) {
688 timeoutTimer = setTimeout(function(){
689 jXHR.abort( "timeout" );
695 transport.send(requestHeaders, done);
697 // Propagate exception as error if not done
698 if ( status === 1 ) {
700 done(0, "error", "" + e);
703 // Simply rethrow otherwise
714 // Serialize an array of form elements or a set of
715 // key/values into a query string
716 param: function( a, traditional ) {
718 add = function( key, value ) {
719 // If value is a function, invoke it and return its value
720 value = jQuery.isFunction(value) ? value() : value;
721 s[ s.length ] = encodeURIComponent(key) + "=" + encodeURIComponent(value);
724 // Set traditional to true for jQuery <= 1.3.2 behavior.
725 if ( traditional === undefined ) {
726 traditional = jQuery.ajaxSettings.traditional;
729 // If an array was passed in, assume that it is an array of form elements.
730 if ( jQuery.isArray(a) || a.jquery ) {
731 // Serialize the form elements
732 jQuery.each( a, function() {
733 add( this.name, this.value );
737 // If traditional, encode the "old" way (the way 1.3.2 or older
738 // did it), otherwise encode params recursively.
739 for ( var prefix in a ) {
740 buildParams( prefix, a[prefix], traditional, add );
744 // Return the resulting serialization
745 return s.join("&").replace(r20, "+");
749 function buildParams( prefix, obj, traditional, add ) {
750 if ( jQuery.isArray(obj) && obj.length ) {
751 // Serialize array item.
752 jQuery.each( obj, function( i, v ) {
753 if ( traditional || rbracket.test( prefix ) ) {
754 // Treat each array item as a scalar.
758 // If array item is non-scalar (array or object), encode its
759 // numeric index to resolve deserialization ambiguity issues.
760 // Note that rack (as of 1.0.0) can't currently deserialize
761 // nested arrays properly, and attempting to do so may cause
762 // a server error. Possible fixes are to modify rack's
763 // deserialization algorithm or to provide an option or flag
764 // to force array serialization to be shallow.
765 buildParams( prefix + "[" + ( typeof v === "object" || jQuery.isArray(v) ? i : "" ) + "]", v, traditional, add );
769 } else if ( !traditional && obj != null && typeof obj === "object" ) {
770 // If we see an array here, it is empty and should be treated as an empty
772 if ( jQuery.isArray( obj ) || jQuery.isEmptyObject( obj ) ) {
775 // Serialize object item.
777 jQuery.each( obj, function( k, v ) {
778 buildParams( prefix + "[" + k + "]", v, traditional, add );
783 // Serialize scalar item.
788 // This is still on the jQuery object... for now
789 // Want to move this to jQuery.ajax some day
792 // Counter for holding the number of active queries
795 // Last-Modified header cache for next request
801 //Execute or select from functions in a given structure of options
802 function ajax_selectOrExecute( structure , s ) {
804 var dataTypes = s.dataTypes,
812 noSelect = structure !== "transports";
814 function initSearch( dataType ) {
816 flag = transportDataType !== dataType && ! checked[ dataType ];
820 checked[ dataType ] = 1;
821 transportDataType = dataType;
822 list = s[ structure ][ dataType ];
824 length = list ? list.length : 0 ;
830 initSearch( dataTypes[ 0 ] );
832 for ( i = 0 ; ( noSelect || ! selected ) && i <= length ; i++ ) {
834 if ( i === length ) {
840 selected = list[ i ]( s , determineDataType );
842 // If we got redirected to another dataType
843 // Search there (if not in progress or already tried)
844 if ( typeof( selected ) === "string" &&
845 initSearch( selected ) ) {
847 dataTypes.unshift( selected );
853 return noSelect ? jQuery : selected;
856 // Add an element to one of the structures in ajaxSettings
857 function ajax_addElement( structure , args ) {
861 length = args.length,
872 first = jQuery.type( args[ 0 ] );
874 if ( first === "object" ) {
875 return ajax_selectOrExecute( structure , args[ 0 ] );
878 structure = jQuery.ajaxSettings[ structure ];
880 if ( first !== "function" ) {
882 dataTypes = args[ 0 ].toLowerCase().split(/\s+/);
883 dLength = dataTypes.length;
888 if ( dLength && start < length ) {
890 functors = sliceFunc.call( args , start );
892 for( i = 0 ; i < dLength ; i++ ) {
894 dataType = dataTypes[ i ];
896 first = /^\+/.test( dataType );
899 dataType = dataType.substr(1);
902 if ( dataType !== "" ) {
904 append = Array.prototype[ first ? "unshift" : "push" ];
905 list = structure[ dataType ] = structure[ dataType ] || [];
906 append.apply( list , functors );
915 // Install prefilter & transport methods
916 jQuery.each( [ "Prefilter" , "Transport" ] , function( _ , name ) {
917 _ = name.toLowerCase() + "s";
918 jQuery[ "ajax" + name ] = function() {
919 return ajax_addElement( _ , arguments );
923 // Utility function that handles dataType when response is received
924 // (for those transports that can give text or xml responses)
925 function determineDataType( s , ct , text , xml ) {
927 var contents = s.contents,
930 dataTypes = s.dataTypes,
931 transportDataType = dataTypes[0],
934 // Auto (xml, json, script or text determined given headers)
935 if ( transportDataType === "*" ) {
937 for ( type in contents ) {
938 if ( ( regexp = contents[ type ] ) && regexp.test( ct ) ) {
939 transportDataType = dataTypes[0] = type;
945 // xml and parsed as such
946 if ( transportDataType === "xml" &&
948 xml.documentElement /* #4958 */ ) {
952 // Text response was provided
957 // If it's not really text, defer to converters
958 if ( transportDataType !== "text" ) {
959 dataTypes.unshift( "text" );
968 * Create the request object; Microsoft failed to properly
969 * implement the XMLHttpRequest in IE7 (can't request local files),
970 * so we use the ActiveXObject when it is available
971 * Additionally XMLHttpRequest can be disabled in IE7/IE8 so
972 * we need a fallback.
974 if ( window.ActiveXObject ) {
975 jQuery.ajaxSettings.xhr = function() {
976 if ( window.location.protocol !== "file:" ) {
978 return new window.XMLHttpRequest();
979 } catch( xhrError ) {}
983 return new window.ActiveXObject("Microsoft.XMLHTTP");
984 } catch( activeError ) {}
988 var testXHR = jQuery.ajaxSettings.xhr();
990 // Does this browser support XHR requests?
991 jQuery.support.ajax = !!testXHR;
993 // Does this browser support crossDomain XHR requests
994 jQuery.support.cors = testXHR && "withCredentials" in testXHR;