2 rscript = /<script(.|\s)*?\/script>/gi,
3 rselectTextarea = /select|textarea/i,
4 rinput = /color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week/i,
7 rts = /(\?|&)_=.*?(&|$)/,
8 rurl = /^(\w+:)?\/\/([^\/?#]+)/,
12 // Keep a copy of the old load
13 _load: jQuery.fn.load,
15 load: function( url, params, callback ) {
16 if ( typeof url !== "string" ) {
17 return this._load( url );
19 // Don't do a request if no elements are being requested
20 } else if ( !this.length ) {
24 var off = url.indexOf(" ");
26 var selector = url.slice(off, url.length);
27 url = url.slice(0, off);
30 // Default to a GET request
33 // If the second parameter was provided
36 if ( jQuery.isFunction( params ) ) {
37 // We assume that it's the callback
41 // Otherwise, build a param string
42 } else if ( typeof params === "object" ) {
43 params = jQuery.param( params, jQuery.ajaxSettings.traditional );
48 // Request the remote document
55 complete: function( res, status ) {
56 // If successful, inject the HTML into all the matched elements
57 if ( status === "success" || status === "notmodified" ) {
58 // See if a selector was specified
60 // Create a dummy div to hold the results
62 // inject the contents of the document in, removing the scripts
63 // to avoid any 'Permission Denied' errors in IE
64 .append(res.responseText.replace(rscript, ""))
66 // Locate the specified elements
69 // If not, just inject the full result
74 this.each( callback, [res.responseText, status, res] );
82 serialize: function() {
83 return jQuery.param(this.serializeArray());
85 serializeArray: function() {
86 return this.map(function() {
87 return this.elements ? jQuery.makeArray(this.elements) : this;
90 return this.name && !this.disabled &&
91 (this.checked || rselectTextarea.test(this.nodeName) ||
92 rinput.test(this.type));
94 .map(function( i, elem ) {
95 var val = jQuery(this).val();
100 jQuery.map( val, function( val, i ) {
101 return { name: elem.name, value: val };
103 { name: elem.name, value: val };
108 // Attach a bunch of functions for handling common AJAX events
109 jQuery.each( "ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "), function( i, o ) {
110 jQuery.fn[o] = function( f ) {
111 return this.bind(o, f);
117 get: function( url, data, callback, type ) {
118 // shift arguments if data argument was omited
119 if ( jQuery.isFunction( data ) ) {
120 type = type || callback;
134 getScript: function( url, callback ) {
135 return jQuery.get(url, null, callback, "script");
138 getJSON: function( url, data, callback ) {
139 return jQuery.get(url, data, callback, "json");
142 post: function( url, data, callback, type ) {
143 // shift arguments if data argument was omited
144 if ( jQuery.isFunction( data ) ) {
145 type = type || callback;
159 ajaxSetup: function( settings ) {
160 jQuery.extend( jQuery.ajaxSettings, settings );
167 contentType: "application/x-www-form-urlencoded",
177 // Create the request object; Microsoft failed to properly
178 // implement the XMLHttpRequest in IE7 (can't request local files),
179 // so we use the ActiveXObject when it is available
180 // This function can be overriden by calling jQuery.ajaxSetup
182 if ( window.XMLHttpRequest && (window.location.protocol !== "file:" || !window.ActiveXObject) ) {
183 return new window.XMLHttpRequest();
187 return new window.ActiveXObject("Microsoft.XMLHTTP");
192 xml: "application/xml, text/xml",
194 script: "text/javascript, application/javascript",
195 json: "application/json, text/javascript",
201 // Last-Modified header cache for next request
205 ajax: function( origSettings ) {
206 var s = jQuery.extend(true, {}, jQuery.ajaxSettings, origSettings);
208 var jsonp, status, data,
209 callbackContext = s.context || s,
210 type = s.type.toUpperCase();
212 // convert data if not already a string
213 if ( s.data && s.processData && typeof s.data !== "string" ) {
214 s.data = jQuery.param( s.data, s.traditional );
217 // Handle JSONP Parameter Callbacks
218 if ( s.dataType === "jsonp" ) {
219 if ( type === "GET" ) {
220 if ( !jsre.test( s.url ) ) {
221 s.url += (rquery.test( s.url ) ? "&" : "?") + (s.jsonp || "callback") + "=?";
223 } else if ( !s.data || !jsre.test(s.data) ) {
224 s.data = (s.data ? s.data + "&" : "") + (s.jsonp || "callback") + "=?";
229 // Build temporary JSONP function
230 if ( s.dataType === "json" && (s.data && jsre.test(s.data) || jsre.test(s.url)) ) {
231 jsonp = s.jsonpCallback || ("jsonp" + jsc++);
233 // Replace the =? sequence both in the query string and the data
235 s.data = (s.data + "").replace(jsre, "=" + jsonp + "$1");
238 s.url = s.url.replace(jsre, "=" + jsonp + "$1");
240 // We need to make sure
241 // that a JSONP style response is executed properly
242 s.dataType = "script";
244 // Handle JSONP-style loading
245 window[ jsonp ] = window[ jsonp ] || function( tmp ) {
250 window[ jsonp ] = undefined;
253 delete window[ jsonp ];
257 head.removeChild( script );
262 if ( s.dataType === "script" && s.cache === null ) {
266 if ( s.cache === false && type === "GET" ) {
269 // try replacing _= if it is there
270 var ret = s.url.replace(rts, "$1_=" + ts + "$2");
272 // if nothing was replaced, add timestamp to the end
273 s.url = ret + ((ret === s.url) ? (rquery.test(s.url) ? "&" : "?") + "_=" + ts : "");
276 // If data is available, append data to url for get requests
277 if ( s.data && type === "GET" ) {
278 s.url += (rquery.test(s.url) ? "&" : "?") + s.data;
281 // Watch for a new set of requests
282 if ( s.global && ! jQuery.active++ ) {
283 jQuery.event.trigger( "ajaxStart" );
286 // Matches an absolute URL, and saves the domain
287 var parts = rurl.exec( s.url ),
288 remote = parts && (parts[1] && parts[1] !== location.protocol || parts[2] !== location.host);
290 // If we're requesting a remote document
291 // and trying to load JSON or Script with a GET
292 if ( s.dataType === "script" && type === "GET" && remote ) {
293 var head = document.getElementsByTagName("head")[0] || document.documentElement;
294 var script = document.createElement("script");
296 if ( s.scriptCharset ) {
297 script.charset = s.scriptCharset;
300 // Handle Script loading
304 // Attach handlers for all browsers
305 script.onload = script.onreadystatechange = function() {
306 if ( !done && (!this.readyState ||
307 this.readyState === "loaded" || this.readyState === "complete") ) {
312 // Handle memory leak in IE
313 script.onload = script.onreadystatechange = null;
314 if ( head && script.parentNode ) {
315 head.removeChild( script );
321 // Use insertBefore instead of appendChild to circumvent an IE6 bug.
322 // This arises when a base node is used (#2709 and #4378).
323 head.insertBefore( script, head.firstChild );
325 // We handle everything using the script element injection
329 var requestDone = false;
331 // Create the request object
339 // Passing null username, generates a login popup on Opera (#2865)
341 xhr.open(type, s.url, s.async, s.username, s.password);
343 xhr.open(type, s.url, s.async);
346 // Need an extra try/catch for cross domain requests in Firefox 3
348 // Set the correct header, if data is being sent
349 if ( s.data || origSettings && origSettings.contentType ) {
350 xhr.setRequestHeader("Content-Type", s.contentType);
353 // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
354 if ( s.ifModified ) {
355 if ( jQuery.lastModified[s.url] ) {
356 xhr.setRequestHeader("If-Modified-Since", jQuery.lastModified[s.url]);
359 if ( jQuery.etag[s.url] ) {
360 xhr.setRequestHeader("If-None-Match", jQuery.etag[s.url]);
364 // Set header so the called script knows that it's an XMLHttpRequest
365 // Only send the header if it's not a remote XHR
367 xhr.setRequestHeader("X-Requested-With", "XMLHttpRequest");
370 // Set the Accepts header for the server, depending on the dataType
371 xhr.setRequestHeader("Accept", s.dataType && s.accepts[ s.dataType ] ?
372 s.accepts[ s.dataType ] + ", */*" :
373 s.accepts._default );
376 // Allow custom headers/mimetypes and early abort
377 if ( s.beforeSend && s.beforeSend.call(callbackContext, xhr, s) === false ) {
378 // Handle the global AJAX counter
379 if ( s.global && ! --jQuery.active ) {
380 jQuery.event.trigger( "ajaxStop" );
383 // close opended socket
389 trigger("ajaxSend", [xhr, s]);
392 // Wait for a response to come back
393 var onreadystatechange = xhr.onreadystatechange = function( isTimeout ) {
394 // The request was aborted, clear the interval and decrement jQuery.active
395 if ( !xhr || xhr.readyState === 0 ) {
397 xhr.onreadystatechange = jQuery.noop;
399 // Handle the global AJAX counter
400 if ( s.global && ! --jQuery.active ) {
401 jQuery.event.trigger( "ajaxStop" );
404 // The transfer is complete and the data is available, or the request timed out
405 } else if ( !requestDone && xhr && (xhr.readyState === 4 || isTimeout === "timeout") ) {
407 xhr.onreadystatechange = jQuery.noop;
409 status = isTimeout === "timeout" ?
411 !jQuery.httpSuccess( xhr ) ?
413 s.ifModified && jQuery.httpNotModified( xhr, s.url ) ?
417 if ( status === "success" ) {
418 // Watch for, and catch, XML document parse errors
420 // process the data (runs the xml through httpData regardless of callback)
421 data = jQuery.httpData( xhr, s.dataType, s );
423 status = "parsererror";
427 // Make sure that the request was successful or notmodified
428 if ( status === "success" || status === "notmodified" ) {
429 // JSONP handles its own success callback
434 jQuery.handleError(s, xhr, status);
437 // Fire the complete handlers
440 if ( isTimeout === "timeout" ) {
452 if ( s.async && s.timeout > 0 ) {
453 setTimeout(function() {
454 // Check to see if the request is still happening
455 if ( xhr && !requestDone ) {
456 onreadystatechange( "timeout" );
463 xhr.send( type === "POST" || type === "PUT" ? s.data : null );
465 jQuery.handleError(s, xhr, null, e);
466 // Fire the complete handlers
470 // firefox 1.5 doesn't fire statechange for sync requests
472 onreadystatechange();
476 // If a local callback was specified, fire it and pass it the data
478 s.success.call( callbackContext, data, status, xhr );
481 // Fire the global callback
483 trigger( "ajaxSuccess", [xhr, s] );
487 function complete() {
490 s.complete.call( callbackContext, xhr, status);
493 // The request was completed
495 trigger( "ajaxComplete", [xhr, s] );
498 // Handle the global AJAX counter
499 if ( s.global && ! --jQuery.active ) {
500 jQuery.event.trigger( "ajaxStop" );
504 function trigger(type, args) {
505 (s.context ? jQuery(s.context) : jQuery.event).trigger(type, args);
508 // return XMLHttpRequest to allow aborting the request etc.
512 handleError: function( s, xhr, status, e ) {
513 // If a local callback was specified, fire it
515 s.error.call( s.context || window, xhr, status, e );
518 // Fire the global callback
520 (s.context ? jQuery(s.context) : jQuery.event).trigger( "ajaxError", [xhr, s, e] );
524 // Counter for holding the number of active queries
527 // Determines if an XMLHttpRequest was successful or not
528 httpSuccess: function( xhr ) {
530 // IE error sometimes returns 1223 when it should be 204 so treat it as success, see #1450
531 return !xhr.status && location.protocol === "file:" ||
532 // Opera returns 0 when status is 304
533 ( xhr.status >= 200 && xhr.status < 300 ) ||
534 xhr.status === 304 || xhr.status === 1223 || xhr.status === 0;
540 // Determines if an XMLHttpRequest returns NotModified
541 httpNotModified: function( xhr, url ) {
542 var lastModified = xhr.getResponseHeader("Last-Modified"),
543 etag = xhr.getResponseHeader("Etag");
545 if ( lastModified ) {
546 jQuery.lastModified[url] = lastModified;
550 jQuery.etag[url] = etag;
553 // Opera returns 0 when status is 304
554 return xhr.status === 304 || xhr.status === 0;
557 httpData: function( xhr, type, s ) {
558 var ct = xhr.getResponseHeader("content-type"),
559 xml = type === "xml" || !type && ct && ct.indexOf("xml") >= 0,
560 json = type === "json" || !type && ct && ct.indexOf("json") >= 0,
561 data = xml ? xhr.responseXML : xhr.responseText;
563 if ( xml && data.documentElement.nodeName === "parsererror" ) {
567 // Allow a pre-filtering function to sanitize the response
568 // s is checked to keep backwards compatibility
569 if ( s && s.dataFilter ) {
570 data = s.dataFilter( data, type );
573 // The filter can actually parse the response
574 if ( typeof data === "string" ) {
576 // If the type is "script", eval it in global context
577 if ( type === "script" ) {
578 jQuery.globalEval( data );
581 // Get the JavaScript object, if JSON is used.
583 // Try to use the native JSON parser first
585 data = JSON.parse( data );
588 data = (new Function("return " + data))();
596 // Serialize an array of form elements or a set of
597 // key/values into a query string
598 param: function( a, traditional ) {
602 // Set traditional to true for jQuery <= 1.3.2 behavior.
603 if ( traditional === undefined ) {
604 traditional = jQuery.ajaxSettings.traditional;
607 function add( key, value ) {
608 // If value is a function, invoke it and return its value
609 value = jQuery.isFunction(value) ? value() : value;
610 s[ s.length ] = encodeURIComponent(key) + "=" + encodeURIComponent(value);
613 // If an array was passed in, assume that it is an array of form elements.
614 if ( jQuery.isArray(a) || a.jquery ) {
615 // Serialize the form elements
616 jQuery.each( a, function() {
617 add( this.name, this.value );
621 // If traditional, encode the "old" way (the way 1.3.2 or older
622 // did it), otherwise encode params recursively.
623 jQuery.each( a, function buildParams( prefix, obj ) {
625 if ( jQuery.isArray(obj) ) {
626 // Serialize array item.
627 jQuery.each( obj, function( i, v ) {
629 // Treat each array item as a scalar.
632 // If array item is non-scalar (array or object), encode its
633 // numeric index to resolve deserialization ambiguity issues.
634 // Note that rack (as of 1.0.0) can't currently deserialize
635 // nested arrays properly, and attempting to do so may cause
636 // a server error. Possible fixes are to modify rack's
637 // deserialization algorithm or to provide an option or flag
638 // to force array serialization to be shallow.
639 buildParams( prefix + "[" + ( typeof v === "object" || jQuery.isArray(v) ? i : "" ) + "]", v );
643 } else if ( !traditional && typeof obj === "object" ) {
644 // Serialize object item.
645 jQuery.each( obj, function( k, v ) {
646 buildParams( prefix + "[" + k + "]", v );
650 // Serialize scalar item.
656 // Return the resulting serialization
657 return s.join("&").replace(r20, "+");