2 // Keep a copy of the old load
5 load: function( url, params, callback ) {
6 if ( typeof url !== "string" )
7 return this._load( url );
9 var off = url.indexOf(" ");
11 var selector = url.slice(off, url.length);
12 url = url.slice(0, off);
15 // Default to a GET request
18 // If the second parameter was provided
21 if ( jQuery.isFunction( params ) ) {
22 // We assume that it's the callback
26 // Otherwise, build a param string
27 } else if( typeof params === "object" ) {
28 params = jQuery.param( params );
34 // Request the remote document
40 complete: function(res, status){
41 // If successful, inject the HTML into all the matched elements
42 if ( status == "success" || status == "notmodified" )
43 // See if a selector was specified
45 // Create a dummy div to hold the results
47 // inject the contents of the document in, removing the scripts
48 // to avoid any 'Permission Denied' errors in IE
49 .append(res.responseText.replace(/<script(.|\s)*?\/script>/g, ""))
51 // Locate the specified elements
54 // If not, just inject the full result
58 self.each( callback, [res.responseText, status, res] );
64 serialize: function() {
65 return jQuery.param(this.serializeArray());
67 serializeArray: function() {
68 return this.map(function(){
69 return this.elements ? jQuery.makeArray(this.elements) : this;
72 return this.name && !this.disabled &&
73 (this.checked || /select|textarea/i.test(this.nodeName) ||
74 /text|hidden|password|search/i.test(this.type));
76 .map(function(i, elem){
77 var val = jQuery(this).val();
78 return val == null ? null :
80 jQuery.map( val, function(val, i){
81 return {name: elem.name, value: val};
83 {name: elem.name, value: val};
88 // Attach a bunch of functions for handling common AJAX events
89 jQuery.each( "ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","), function(i,o){
90 jQuery.fn[o] = function(f){
91 return this.bind(o, f);
99 get: function( url, data, callback, type ) {
100 // shift arguments if data argument was ommited
101 if ( jQuery.isFunction( data ) ) {
115 getScript: function( url, callback ) {
116 return jQuery.get(url, null, callback, "script");
119 getJSON: function( url, data, callback ) {
120 return jQuery.get(url, data, callback, "json");
123 post: function( url, data, callback, type ) {
124 if ( jQuery.isFunction( data ) ) {
138 ajaxSetup: function( settings ) {
139 jQuery.extend( jQuery.ajaxSettings, settings );
146 contentType: "application/x-www-form-urlencoded",
155 // Create the request object; Microsoft failed to properly
156 // implement the XMLHttpRequest in IE7, so we use the ActiveXObject when it is available
157 // This function can be overriden by calling jQuery.ajaxSetup
159 return window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
162 xml: "application/xml, text/xml",
164 script: "text/javascript, application/javascript",
165 json: "application/json, text/javascript",
171 // Last-Modified header cache for next request
175 ajax: function( s ) {
176 // Extend the settings, but re-extend 's' so that it can be
177 // checked again later (in the test suite, specifically)
178 s = jQuery.extend(true, s, jQuery.extend(true, {}, jQuery.ajaxSettings, s));
180 var jsonp, jsre = /=\?(&|$)/g, status, data,
181 type = s.type.toUpperCase();
183 // convert data if not already a string
184 if ( s.data && s.processData && typeof s.data !== "string" )
185 s.data = jQuery.param(s.data);
187 // Handle JSONP Parameter Callbacks
188 if ( s.dataType == "jsonp" ) {
189 if ( type == "GET" ) {
190 if ( !s.url.match(jsre) )
191 s.url += (s.url.match(/\?/) ? "&" : "?") + (s.jsonp || "callback") + "=?";
192 } else if ( !s.data || !s.data.match(jsre) )
193 s.data = (s.data ? s.data + "&" : "") + (s.jsonp || "callback") + "=?";
197 // Build temporary JSONP function
198 if ( s.dataType == "json" && (s.data && s.data.match(jsre) || s.url.match(jsre)) ) {
199 jsonp = "jsonp" + jsc++;
201 // Replace the =? sequence both in the query string and the data
203 s.data = (s.data + "").replace(jsre, "=" + jsonp + "$1");
204 s.url = s.url.replace(jsre, "=" + jsonp + "$1");
206 // We need to make sure
207 // that a JSONP style response is executed properly
208 s.dataType = "script";
210 // Handle JSONP-style loading
211 window[ jsonp ] = function(tmp){
216 window[ jsonp ] = undefined;
217 try{ delete window[ jsonp ]; } catch(e){}
219 head.removeChild( script );
223 if ( s.dataType == "script" && s.cache == null )
226 if ( s.cache === false && type == "GET" ) {
228 // try replacing _= if it is there
229 var ret = s.url.replace(/(\?|&)_=.*?(&|$)/, "$1_=" + ts + "$2");
230 // if nothing was replaced, add timestamp to the end
231 s.url = ret + ((ret == s.url) ? (s.url.match(/\?/) ? "&" : "?") + "_=" + ts : "");
234 // If data is available, append data to url for get requests
235 if ( s.data && type == "GET" ) {
236 s.url += (s.url.match(/\?/) ? "&" : "?") + s.data;
239 // Watch for a new set of requests
240 if ( s.global && ! jQuery.active++ )
241 jQuery.event.trigger( "ajaxStart" );
243 // Matches an absolute URL, and saves the domain
244 var parts = /^(\w+:)?\/\/([^\/?#]+)/.exec( s.url );
246 // If we're requesting a remote document
247 // and trying to load JSON or Script with a GET
248 if ( s.dataType == "script" && type == "GET" && parts
249 && ( parts[1] && parts[1] != location.protocol || parts[2] != location.host )){
251 var head = document.getElementsByTagName("head")[0];
252 var script = document.createElement("script");
255 script.charset = s.scriptCharset;
257 // Handle Script loading
261 // Attach handlers for all browsers
262 script.onload = script.onreadystatechange = function(){
263 if ( !done && (!this.readyState ||
264 this.readyState == "loaded" || this.readyState == "complete") ) {
269 // Handle memory leak in IE
270 script.onload = script.onreadystatechange = null;
271 head.removeChild( script );
276 // Use insertBefore instead of appendChild to circumvent an IE6 bug.
277 // This arises when a base node is used (#2709 and #4378).
278 head.insertBefore( script, head.firstChild );
280 // We handle everything using the script element injection
284 var requestDone = false;
286 // Create the request object
290 // Passing null username, generates a login popup on Opera (#2865)
292 xhr.open(type, s.url, s.async, s.username, s.password);
294 xhr.open(type, s.url, s.async);
296 // Need an extra try/catch for cross domain requests in Firefox 3
298 // Set the correct header, if data is being sent
300 xhr.setRequestHeader("Content-Type", s.contentType);
302 // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
303 if ( s.ifModified ) {
304 if (jQuery.lastModified[s.url])
305 xhr.setRequestHeader("If-Modified-Since", jQuery.lastModified[s.url]);
306 if (jQuery.etag[s.url])
307 xhr.setRequestHeader("If-None-Match", jQuery.etag[s.url]);
310 // Set header so the called script knows that it's an XMLHttpRequest
311 xhr.setRequestHeader("X-Requested-With", "XMLHttpRequest");
313 // Set the Accepts header for the server, depending on the dataType
314 xhr.setRequestHeader("Accept", s.dataType && s.accepts[ s.dataType ] ?
315 s.accepts[ s.dataType ] + ", */*" :
316 s.accepts._default );
319 // Allow custom headers/mimetypes and early abort
320 if ( s.beforeSend && s.beforeSend(xhr, s) === false ) {
321 // Handle the global AJAX counter
322 if ( s.global && ! --jQuery.active )
323 jQuery.event.trigger( "ajaxStop" );
324 // close opended socket
330 jQuery.event.trigger("ajaxSend", [xhr, s]);
332 // Wait for a response to come back
333 var onreadystatechange = function(isTimeout){
334 // The request was aborted, clear the interval and decrement jQuery.active
335 if (xhr.readyState == 0) {
337 // clear poll interval
340 // Handle the global AJAX counter
341 if ( s.global && ! --jQuery.active )
342 jQuery.event.trigger( "ajaxStop" );
344 // The transfer is complete and the data is available, or the request timed out
345 } else if ( !requestDone && xhr && (xhr.readyState == 4 || isTimeout == "timeout") ) {
348 // clear poll interval
354 status = isTimeout == "timeout" ? "timeout" :
355 !jQuery.httpSuccess( xhr ) ? "error" :
356 s.ifModified && jQuery.httpNotModified( xhr, s.url ) ? "notmodified" :
359 if ( status == "success" ) {
360 // Watch for, and catch, XML document parse errors
362 // process the data (runs the xml through httpData regardless of callback)
363 data = jQuery.httpData( xhr, s.dataType, s );
365 status = "parsererror";
369 // Make sure that the request was successful or notmodified
370 if ( status == "success" || status == "notmodified" ) {
371 // JSONP handles its own success callback
375 jQuery.handleError(s, xhr, status);
377 // Fire the complete handlers
390 // don't attach the handler to the request, just poll it instead
391 var ival = setInterval(onreadystatechange, 13);
395 setTimeout(function(){
396 // Check to see if the request is still happening
397 if ( xhr && !requestDone )
398 onreadystatechange( "timeout" );
404 xhr.send( type === "POST" ? s.data : null );
406 jQuery.handleError(s, xhr, null, e);
409 // firefox 1.5 doesn't fire statechange for sync requests
411 onreadystatechange();
414 // If a local callback was specified, fire it and pass it the data
416 s.success( data, status );
418 // Fire the global callback
420 jQuery.event.trigger( "ajaxSuccess", [xhr, s] );
426 s.complete(xhr, status);
428 // The request was completed
430 jQuery.event.trigger( "ajaxComplete", [xhr, s] );
432 // Handle the global AJAX counter
433 if ( s.global && ! --jQuery.active )
434 jQuery.event.trigger( "ajaxStop" );
437 // return XMLHttpRequest to allow aborting the request etc.
441 handleError: function( s, xhr, status, e ) {
442 // If a local callback was specified, fire it
443 if ( s.error ) s.error( xhr, status, e );
445 // Fire the global callback
447 jQuery.event.trigger( "ajaxError", [xhr, s, e] );
450 // Counter for holding the number of active queries
453 // Determines if an XMLHttpRequest was successful or not
454 httpSuccess: function( xhr ) {
456 // IE error sometimes returns 1223 when it should be 204 so treat it as success, see #1450
457 return !xhr.status && location.protocol == "file:" ||
458 ( xhr.status >= 200 && xhr.status < 300 ) || xhr.status == 304 || xhr.status == 1223;
463 // Determines if an XMLHttpRequest returns NotModified
464 httpNotModified: function( xhr, url ) {
465 var last_modified = xhr.getResponseHeader("Last-Modified");
466 var etag = xhr.getResponseHeader("Etag");
469 jQuery.lastModified[url] = last_modified;
472 jQuery.etag[url] = etag;
474 return xhr.status == 304;
477 httpData: function( xhr, type, s ) {
478 var ct = xhr.getResponseHeader("content-type"),
479 xml = type == "xml" || !type && ct && ct.indexOf("xml") >= 0,
480 data = xml ? xhr.responseXML : xhr.responseText;
482 if ( xml && data.documentElement.tagName == "parsererror" ) {
486 // Allow a pre-filtering function to sanitize the response
487 // s != null is checked to keep backwards compatibility
488 if ( s && s.dataFilter ) {
489 data = s.dataFilter( data, type );
492 // The filter can actually parse the response
493 if ( typeof data === "string" ) {
495 // If the type is "script", eval it in global context
496 if ( type === "script" ) {
497 jQuery.globalEval( data );
500 // Get the JavaScript object, if JSON is used.
501 if ( type == "json" ) {
502 if ( typeof JSON === "object" && JSON.parse ) {
503 data = JSON.parse( data );
505 data = (new Function("return " + data))();
513 // Serialize an array of form elements or a set of
514 // key/values into a query string
515 param: function( a ) {
518 function add( key, value ){
519 s[ s.length ] = encodeURIComponent(key) + '=' + encodeURIComponent(value);
522 // If an array was passed in, assume that it is an array
524 if ( jQuery.isArray(a) || a.jquery )
525 // Serialize the form elements
526 jQuery.each( a, function(){
527 add( this.name, this.value );
530 // Otherwise, assume that it's an object of key/value pairs
532 // Serialize the key/values
534 // If the value is an array then the key names need to be repeated
535 if ( jQuery.isArray(a[j]) )
536 jQuery.each( a[j], function(){
540 add( j, jQuery.isFunction(a[j]) ? a[j]() : a[j] );
542 // Return the resulting serialization
543 return s.join("&").replace(/%20/g, "+");