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+:)?\/\/([^\/?#]+)/,
16 sliceFunc = Array.prototype.slice,
18 // Keep a copy of the old load method
19 _load = jQuery.fn.load;
22 load: function( url, params, callback ) {
23 if ( typeof url !== "string" && _load ) {
24 return _load.apply( this, arguments );
26 // Don't do a request if no elements are being requested
27 } else if ( !this.length ) {
31 var off = url.indexOf(" ");
33 var selector = url.slice(off, url.length);
34 url = url.slice(0, off);
37 // Default to a GET request
40 // If the second parameter was provided
43 if ( jQuery.isFunction( params ) ) {
44 // We assume that it's the callback
48 // Otherwise, build a param string
49 } else if ( typeof params === "object" ) {
50 params = jQuery.param( params, jQuery.ajaxSettings.traditional );
57 // Request the remote document
63 complete: function( res, status ) {
64 // If successful, inject the HTML into all the matched elements
65 if ( status === "success" || status === "notmodified" ) {
66 // See if a selector was specified
68 // Create a dummy div to hold the results
70 // inject the contents of the document in, removing the scripts
71 // to avoid any 'Permission Denied' errors in IE
72 .append(res.responseText.replace(rscript, ""))
74 // Locate the specified elements
77 // If not, just inject the full result
82 self.each( callback, [res.responseText, status, res] );
90 serialize: function() {
91 return jQuery.param(this.serializeArray());
94 serializeArray: function() {
95 return this.map(function(){
96 return this.elements ? jQuery.makeArray(this.elements) : this;
99 return this.name && !this.disabled &&
100 (this.checked || rselectTextarea.test(this.nodeName) ||
101 rinput.test(this.type));
103 .map(function(i, elem){
104 var val = jQuery(this).val();
108 jQuery.isArray(val) ?
109 jQuery.map( val, function(val, i){
110 return {name: elem.name, value: val.replace(/\r?\n/g, "\r\n")};
112 {name: elem.name, value: val.replace(/\r?\n/g, "\r\n")};
117 // Attach a bunch of functions for handling common AJAX events
118 jQuery.each( "ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "), function(i,o){
119 jQuery.fn[o] = function(f){
120 return this.bind(o, f);
124 jQuery.each( [ "get", "post" ], function( i, method ) {
125 jQuery[ method ] = function( url, data, callback, type ) {
126 // shift arguments if data argument was omited
127 if ( jQuery.isFunction( data ) ) {
128 type = type || callback;
145 getScript: function( url, callback ) {
146 return jQuery.get(url, null, callback, "script");
149 getJSON: function( url, data, callback ) {
150 return jQuery.get(url, data, callback, "json");
153 ajaxSetup: function( settings ) {
154 jQuery.extend( jQuery.ajaxSettings, settings );
161 contentType: "application/x-www-form-urlencoded",
175 return new window.XMLHttpRequest();
179 xml: "application/xml, text/xml",
182 json: "application/json, text/javascript",
193 // 1) They are useful to introduce custom dataTypes (see transport/jsonp for an example)
194 // 2) These are called:
195 // * BEFORE asking for a transport
196 // * AFTER param serialization (s.data is a string if s.processData is true)
197 // 3) key is the dataType
198 // 4) the catchall symbol "*" can be used
199 // 5) execution will start with transport dataType and THEN continue down to "*" if needed
202 // Transports bindings
203 // 1) key is the dataType
204 // 2) the catchall symbol "*" can be used
205 // 3) selection will start with transport dataType and THEN go to "*" if needed
208 // List of data converters
209 // 1) key format is "source_type destination_type" (a single space in-between)
210 // 2) the catchall symbol "*" can be used for source_type
213 // Convert anything to text
214 "* text": window.String,
216 // Text to html (true = no transformation)
219 // Evaluate text as a json expression
220 "text json": jQuery.parseJSON,
223 "text xml": jQuery.parseXML
228 // (s is used internally)
229 ajax: function( url , options , s ) {
232 if ( arguments.length === 1 ) {
234 url = options ? options.url : undefined;
237 // Force options to be an object
238 options = options || {};
240 // Get the url if provided separately
241 options.url = url || options.url;
243 // Create the final options object
244 s = jQuery.extend( true , {} , jQuery.ajaxSettings , options );
246 // We force the original context
247 // (plain objects used as context get extended)
248 s.context = options.context;
251 jQuery_lastModified = jQuery.lastModified,
252 jQuery_etag = jQuery.etag,
253 // Callbacks contexts
254 callbackContext = s.context || s,
255 globalEventContext = s.context ? jQuery( s.context ) : jQuery.event,
257 deferred = jQuery.Deferred(),
258 completeDeferred = jQuery._Deferred(),
259 // Headers (they are sent all at once)
262 responseHeadersString,
278 setRequestHeader: function(name,value) {
280 requestHeaders[ name.toLowerCase() ] = value;
286 getAllResponseHeaders: function() {
287 return state === 2 ? responseHeadersString : null;
290 // Builds headers hashtable if needed
291 // (match is used internally)
292 getResponseHeader: function( key , match ) {
298 if ( responseHeaders === undefined ) {
300 responseHeaders = {};
302 if ( typeof responseHeadersString === "string" ) {
304 while( ( match = rheaders.exec( responseHeadersString ) ) ) {
305 responseHeaders[ match[ 1 ].toLowerCase() ] = match[ 2 ];
309 return responseHeaders[ key.toLowerCase() ];
312 // Cancel the request
313 abort: function( statusText ) {
314 if ( transport && state !== 2 ) {
315 transport.abort( statusText || "abort" );
316 done( 0 , statusText );
322 // Callback for when everything is done
323 // It is defined here because jslint complains if it is declared
324 // at the end of the function (which would be more logical and readable)
325 function done( status , statusText , response , headers) {
332 // State is "done" now
336 jXHR.readyState = status ? 4 : 0;
338 // Cache response headers
339 responseHeadersString = headers || "";
341 // Clear timeout if it exists
342 if ( timeoutTimer ) {
343 clearTimeout(timeoutTimer);
348 // and ifModified status
349 ifModified = s.ifModified,
358 // If not timeout, force a jQuery-compliant status text
359 if ( statusText != "timeout" ) {
360 statusText = ( status >= 200 && status < 300 ) ?
362 ( status === 304 ? "notmodified" : "error" );
365 // If successful, handle type chaining
366 if ( statusText === "success" || statusText === "notmodified" ) {
368 // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
369 if ( s.ifModified ) {
371 var lastModified = jXHR.getResponseHeader("Last-Modified"),
372 etag = jXHR.getResponseHeader("Etag");
375 jQuery_lastModified[ s.url ] = lastModified;
378 jQuery_etag[ s.url ] = etag;
382 if ( s.ifModified && statusText === "notmodified" ) {
388 // Chain data conversions and determine the final value
389 // (if an exception is thrown in the process, it'll be notified as an error)
400 dataTypes = s.dataTypes,
401 converters = s.converters,
407 for( i = 0 ; i < dataTypes.length ; i++ ) {
409 current = dataTypes[ i ];
411 if ( responses[ current ] ) {
412 jXHR[ "response" + responses[ current ] ] = response;
413 responses[ current ] = 0;
418 prev = dataTypes[ i - 1 ];
420 if ( prev !== "*" && current !== "*" && prev !== current ) {
422 conv = converters[ ( conversion = prev + " " + current ) ] ||
423 converters[ "* " + current ];
427 if ( ! conv && prev !== "text" && current !== "text" ) {
428 conv1 = converters[ prev + " text" ] || converters[ "* text" ];
429 conv2 = converters[ "text " + current ];
430 if ( conv1 === true ) {
432 } else if ( conv2 === true ) {
437 if ( ! ( conv || conv1 && conv2 ) ) {
441 if ( conv !== true ) {
442 response = conv ? conv( response ) : conv2( conv1( response ) );
445 } else if ( s.dataFilter ) {
447 response = s.dataFilter( response );
448 dataTypes = s.dataTypes;
452 // We have a real success
458 statusText = "parsererror";
464 } else { // if not success, mark it as an error
466 error = error || statusText;
469 // Set data for the fake xhr object
470 jXHR.status = status;
471 jXHR.statusText = statusText;
475 deferred.fire( callbackContext , [ success , statusText , jXHR ] );
477 deferred.fireReject( callbackContext , [ jXHR , statusText , error ] );
481 globalEventContext.trigger( "ajax" + ( isSuccess ? "Success" : "Error" ) ,
482 [ jXHR , s , isSuccess ? success : error ] );
486 completeDeferred.fire( callbackContext, [ jXHR , statusText ] );
489 globalEventContext.trigger( "ajaxComplete" , [ jXHR , s] );
490 // Handle the global AJAX counter
491 if ( ! --jQuery.active ) {
492 jQuery.event.trigger( "ajaxStop" );
498 deferred.promise( jXHR );
499 jXHR.success = jXHR.then;
500 jXHR.error = jXHR.fail;
501 jXHR.complete = completeDeferred.then;
503 // Remove hash character (#7531: and string promotion)
504 s.url = ( "" + s.url ).replace( rhash , "" );
506 // Uppercase the type
507 s.type = s.type.toUpperCase();
509 // Determine if request has content
510 s.hasContent = ! rnoContent.test( s.type );
512 // Extract dataTypes list
513 s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().split( /\s+/ );
515 // Determine if a cross-domain request is in order
516 var parts = rurl.exec( s.url.toLowerCase() ),
518 s.crossDomain = !!( parts && ( parts[ 1 ] && parts[ 1 ] != loc.protocol || parts[ 2 ] != loc.host ) );
520 // Convert data if not already a string
521 if ( s.data && s.processData && typeof s.data != "string" ) {
522 s.data = jQuery.param( s.data , s.traditional );
525 // Watch for a new set of requests
526 if ( s.global && jQuery.active++ === 0 ) {
527 jQuery.event.trigger( "ajaxStart" );
531 transport = jQuery.ajax.prefilter( s ).transport( s );
533 // If no transport, we auto-abort
536 done( 0 , "transport not found" );
541 // More options handling for requests with no content
542 if ( ! s.hasContent ) {
544 // If data is available, append data to url
546 s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.data;
549 // Add anti-cache in url if needed
550 if ( s.cache === false ) {
552 var ts = jQuery.now(),
553 // try replacing _= if it is there
554 ret = s.url.replace( rts , "$1_=" + ts );
556 // if nothing was replaced, add timestamp to the end
557 s.url = ret + ( (ret == s.url ) ? ( rquery.test( s.url ) ? "&" : "?" ) + "_=" + ts : "");
561 // Set the correct header, if data is being sent
562 if ( ( s.data && s.hasContent ) || options.contentType ) {
563 requestHeaders[ "content-type" ] = s.contentType;
566 // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
567 if ( s.ifModified ) {
568 if ( jQuery_lastModified[ s.url ] ) {
569 requestHeaders[ "if-modified-since" ] = jQuery_lastModified[ s.url ];
571 if ( jQuery_etag[ s.url ] ) {
572 requestHeaders[ "if-none-match" ] = jQuery_etag[ s.url ];
576 // Set the Accepts header for the server, depending on the dataType
577 requestHeaders.accept = s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?
578 s.accepts[ s.dataTypes[ 0 ] ] + ( s.dataTypes[ 0 ] !== "*" ? ", */*; q=0.01" : "" ) :
581 // Check for headers option
582 for ( i in s.headers ) {
583 requestHeaders[ i.toLowerCase() ] = s.headers[ i ];
586 // Allow custom headers/mimetypes and early abort
587 if ( s.beforeSend && ( s.beforeSend.call( callbackContext , jXHR , s ) === false || state === 2 ) ) {
589 // Abort if not done already
595 // Set state as sending
599 // Install callbacks on deferreds
600 for ( i in { success:1, error:1, complete:1 } ) {
606 globalEventContext.trigger( "ajaxSend" , [ jXHR , s ] );
610 if ( s.async && s.timeout > 0 ) {
611 timeoutTimer = setTimeout(function(){
612 jXHR.abort( "timeout" );
618 transport.send(requestHeaders, done);
620 // Propagate exception as error if not done
621 if ( status === 1 ) {
623 done(0, "error", "" + e);
626 // Simply rethrow otherwise
637 // Serialize an array of form elements or a set of
638 // key/values into a query string
639 param: function( a, traditional ) {
641 add = function( key, value ) {
642 // If value is a function, invoke it and return its value
643 value = jQuery.isFunction(value) ? value() : value;
644 s[ s.length ] = encodeURIComponent(key) + "=" + encodeURIComponent(value);
647 // Set traditional to true for jQuery <= 1.3.2 behavior.
648 if ( traditional === undefined ) {
649 traditional = jQuery.ajaxSettings.traditional;
652 // If an array was passed in, assume that it is an array of form elements.
653 if ( jQuery.isArray(a) || a.jquery ) {
654 // Serialize the form elements
655 jQuery.each( a, function() {
656 add( this.name, this.value );
660 // If traditional, encode the "old" way (the way 1.3.2 or older
661 // did it), otherwise encode params recursively.
662 for ( var prefix in a ) {
663 buildParams( prefix, a[prefix], traditional, add );
667 // Return the resulting serialization
668 return s.join("&").replace(r20, "+");
672 function buildParams( prefix, obj, traditional, add ) {
673 if ( jQuery.isArray(obj) && obj.length ) {
674 // Serialize array item.
675 jQuery.each( obj, function( i, v ) {
676 if ( traditional || rbracket.test( prefix ) ) {
677 // Treat each array item as a scalar.
681 // If array item is non-scalar (array or object), encode its
682 // numeric index to resolve deserialization ambiguity issues.
683 // Note that rack (as of 1.0.0) can't currently deserialize
684 // nested arrays properly, and attempting to do so may cause
685 // a server error. Possible fixes are to modify rack's
686 // deserialization algorithm or to provide an option or flag
687 // to force array serialization to be shallow.
688 buildParams( prefix + "[" + ( typeof v === "object" || jQuery.isArray(v) ? i : "" ) + "]", v, traditional, add );
692 } else if ( !traditional && obj != null && typeof obj === "object" ) {
693 // If we see an array here, it is empty and should be treated as an empty
695 if ( jQuery.isArray( obj ) || jQuery.isEmptyObject( obj ) ) {
698 // Serialize object item.
700 jQuery.each( obj, function( k, v ) {
701 buildParams( prefix + "[" + k + "]", v, traditional, add );
706 // Serialize scalar item.
711 // This is still on the jQuery object... for now
712 // Want to move this to jQuery.ajax some day
715 // Counter for holding the number of active queries
718 // Last-Modified header cache for next request
724 //Execute or select from functions in a given structure of options
725 function ajax_selectOrExecute( structure , s ) {
727 var dataTypes = s.dataTypes,
735 noSelect = structure !== "transports";
737 function initSearch( dataType ) {
739 flag = transportDataType !== dataType && ! checked[ dataType ];
743 checked[ dataType ] = 1;
744 transportDataType = dataType;
745 list = s[ structure ][ dataType ];
747 length = list ? list.length : 0 ;
753 initSearch( dataTypes[ 0 ] );
755 for ( i = 0 ; ( noSelect || ! selected ) && i <= length ; i++ ) {
757 if ( i === length ) {
763 selected = list[ i ]( s , determineDataType );
765 // If we got redirected to another dataType
766 // Search there (if not in progress or already tried)
767 if ( typeof( selected ) === "string" &&
768 initSearch( selected ) ) {
770 dataTypes.unshift( selected );
776 return noSelect ? jQuery.ajax : selected;
779 // Add an element to one of the structures in ajaxSettings
780 function ajax_addElement( structure , args ) {
784 length = args.length,
795 first = jQuery.type( args[ 0 ] );
797 if ( first === "object" ) {
798 return ajax_selectOrExecute( structure , args[ 0 ] );
801 structure = jQuery.ajaxSettings[ structure ];
803 if ( first !== "function" ) {
805 dataTypes = args[ 0 ].toLowerCase().split(/\s+/);
806 dLength = dataTypes.length;
811 if ( dLength && start < length ) {
813 functors = sliceFunc.call( args , start );
815 for( i = 0 ; i < dLength ; i++ ) {
817 dataType = dataTypes[ i ];
819 first = /^\+/.test( dataType );
822 dataType = dataType.substr(1);
825 if ( dataType !== "" ) {
827 append = Array.prototype[ first ? "unshift" : "push" ];
828 list = structure[ dataType ] = structure[ dataType ] || [];
829 append.apply( list , functors );
838 // Install prefilter & transport methods
839 jQuery.each( [ "prefilter" , "transport" ] , function( _ , name ) {
841 jQuery.ajax[ name ] = function() {
842 return ajax_addElement( _ , arguments );
846 // Utility function that handles dataType when response is received
847 // (for those transports that can give text or xml responses)
848 function determineDataType( s , ct , text , xml ) {
850 var contents = s.contents,
853 dataTypes = s.dataTypes,
854 transportDataType = dataTypes[0],
857 // Auto (xml, json, script or text determined given headers)
858 if ( transportDataType === "*" ) {
860 for ( type in contents ) {
861 if ( ( regexp = contents[ type ] ) && regexp.test( ct ) ) {
862 transportDataType = dataTypes[0] = type;
868 // xml and parsed as such
869 if ( transportDataType === "xml" &&
871 xml.documentElement /* #4958 */ ) {
875 // Text response was provided
880 // If it's not really text, defer to converters
881 if ( transportDataType !== "text" ) {
882 dataTypes.unshift( "text" );
891 * Create the request object; Microsoft failed to properly
892 * implement the XMLHttpRequest in IE7 (can't request local files),
893 * so we use the ActiveXObject when it is available
894 * Additionally XMLHttpRequest can be disabled in IE7/IE8 so
895 * we need a fallback.
897 if ( window.ActiveXObject ) {
898 jQuery.ajaxSettings.xhr = function() {
899 if ( window.location.protocol !== "file:" ) {
901 return new window.XMLHttpRequest();
902 } catch( xhrError ) {}
906 return new window.ActiveXObject("Microsoft.XMLHTTP");
907 } catch( activeError ) {}
911 var testXHR = jQuery.ajaxSettings.xhr();
913 // Does this browser support XHR requests?
914 jQuery.support.ajax = !!testXHR;
916 // Does this browser support crossDomain XHR requests
917 jQuery.support.cors = testXHR && "withCredentials" in testXHR;