Fixed #2046 by forcing the dataType to 'html' in the .load() function.
[jquery.git] / src / ajax.js
1 jQuery.fn.extend({
2         load: function( url, params, callback ) {
3                 if ( jQuery.isFunction( url ) )
4                         return this.bind("load", url);
5
6                 var off = url.indexOf(" ");
7                 if ( off >= 0 ) {
8                         var selector = url.slice(off, url.length);
9                         url = url.slice(0, off);
10                 }
11
12                 callback = callback || function(){};
13
14                 // Default to a GET request
15                 var type = "GET";
16
17                 // If the second parameter was provided
18                 if ( params )
19                         // If it's a function
20                         if ( jQuery.isFunction( params ) ) {
21                                 // We assume that it's the callback
22                                 callback = params;
23                                 params = null;
24
25                         // Otherwise, build a param string
26                         } else {
27                                 params = jQuery.param( params );
28                                 type = "POST";
29                         }
30
31                 var self = this;
32
33                 // Request the remote document
34                 jQuery.ajax({
35                         url: url,
36                         type: type,
37                         dataType: "html",
38                         data: params,
39                         complete: function(res, status){
40                                 // If successful, inject the HTML into all the matched elements
41                                 if ( status == "success" || status == "notmodified" )
42                                         // See if a selector was specified
43                                         self.html( selector ?
44                                                 // Create a dummy div to hold the results
45                                                 jQuery("<div/>")
46                                                         // inject the contents of the document in, removing the scripts
47                                                         // to avoid any 'Permission Denied' errors in IE
48                                                         .append(res.responseText.replace(/<script(.|\s)*?\/script>/g, ""))
49
50                                                         // Locate the specified elements
51                                                         .find(selector) :
52
53                                                 // If not, just inject the full result
54                                                 res.responseText );
55
56                                 self.each( callback, [res.responseText, status, res] );
57                         }
58                 });
59                 return this;
60         },
61
62         serialize: function() {
63                 return jQuery.param(this.serializeArray());
64         },
65         serializeArray: function() {
66                 return this.map(function(){
67                         return jQuery.nodeName(this, "form") ?
68                                 jQuery.makeArray(this.elements) : this;
69                 })
70                 .filter(function(){
71                         return this.name && !this.disabled && 
72                                 (this.checked || /select|textarea/i.test(this.nodeName) || 
73                                         /text|hidden|password/i.test(this.type));
74                 })
75                 .map(function(i, elem){
76                         var val = jQuery(this).val();
77                         return val == null ? null :
78                                 val.constructor == Array ?
79                                         jQuery.map( val, function(val, i){
80                                                 return {name: elem.name, value: val};
81                                         }) :
82                                         {name: elem.name, value: val};
83                 }).get();
84         }
85 });
86
87 // Attach a bunch of functions for handling common AJAX events
88 jQuery.each( "ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","), function(i,o){
89         jQuery.fn[o] = function(f){
90                 return this.bind(o, f);
91         };
92 });
93
94 var jsc = (new Date).getTime();
95
96 jQuery.extend({
97         get: function( url, data, callback, type ) {
98                 // shift arguments if data argument was ommited
99                 if ( jQuery.isFunction( data ) ) {
100                         callback = data;
101                         data = null;
102                 }
103                 
104                 return jQuery.ajax({
105                         type: "GET",
106                         url: url,
107                         data: data,
108                         success: callback,
109                         dataType: type
110                 });
111         },
112
113         getScript: function( url, callback ) {
114                 return jQuery.get(url, null, callback, "script");
115         },
116
117         getJSON: function( url, data, callback ) {
118                 return jQuery.get(url, data, callback, "json");
119         },
120
121         post: function( url, data, callback, type ) {
122                 if ( jQuery.isFunction( data ) ) {
123                         callback = data;
124                         data = {};
125                 }
126
127                 return jQuery.ajax({
128                         type: "POST",
129                         url: url,
130                         data: data,
131                         success: callback,
132                         dataType: type
133                 });
134         },
135
136         ajaxSetup: function( settings ) {
137                 jQuery.extend( jQuery.ajaxSettings, settings );
138         },
139
140         ajaxSettings: {
141                 global: true,
142                 type: "GET",
143                 timeout: 0,
144                 contentType: "application/x-www-form-urlencoded",
145                 processData: true,
146                 async: true,
147                 data: null
148         },
149         
150         // Last-Modified header cache for next request
151         lastModified: {},
152
153         ajax: function( s ) {
154                 var jsonp, jsre = /=(\?|%3F)/g, status, data;
155
156                 // Extend the settings, but re-extend 's' so that it can be
157                 // checked again later (in the test suite, specifically)
158                 s = jQuery.extend(true, s, jQuery.extend(true, {}, jQuery.ajaxSettings, s));
159
160                 // convert data if not already a string
161                 if ( s.data && s.processData && typeof s.data != "string" )
162                         s.data = jQuery.param(s.data);
163
164                 // Handle JSONP Parameter Callbacks
165                 if ( s.dataType == "jsonp" ) {
166                         if ( s.type.toLowerCase() == "get" ) {
167                                 if ( !s.url.match(jsre) )
168                                         s.url += (s.url.match(/\?/) ? "&" : "?") + (s.jsonp || "callback") + "=?";
169                         } else if ( !s.data || !s.data.match(jsre) )
170                                 s.data = (s.data ? s.data + "&" : "") + (s.jsonp || "callback") + "=?";
171                         s.dataType = "json";
172                 }
173
174                 // Build temporary JSONP function
175                 if ( s.dataType == "json" && (s.data && s.data.match(jsre) || s.url.match(jsre)) ) {
176                         jsonp = "jsonp" + jsc++;
177
178                         // Replace the =? sequence both in the query string and the data
179                         if ( s.data )
180                                 s.data = (s.data + "").replace(jsre, "=" + jsonp);
181                         s.url = s.url.replace(jsre, "=" + jsonp);
182
183                         // We need to make sure
184                         // that a JSONP style response is executed properly
185                         s.dataType = "script";
186
187                         // Handle JSONP-style loading
188                         window[ jsonp ] = function(tmp){
189                                 data = tmp;
190                                 success();
191                                 complete();
192                                 // Garbage collect
193                                 window[ jsonp ] = undefined;
194                                 try{ delete window[ jsonp ]; } catch(e){}
195                         };
196                 }
197
198                 if ( s.dataType == "script" && s.cache == null )
199                         s.cache = false;
200
201                 if ( s.cache === false && s.type.toLowerCase() == "get" ) {
202                         var ts = (new Date()).getTime();
203                         // try replacing _= if it is there
204                         var ret = s.url.replace(/(\?|&)_=.*?(&|$)/, "$1_=" + ts + "$2");
205                         // if nothing was replaced, add timestamp to the end
206                         s.url = ret + ((ret == s.url) ? (s.url.match(/\?/) ? "&" : "?") + "_=" + ts : "");
207                 }
208
209                 // If data is available, append data to url for get requests
210                 if ( s.data && s.type.toLowerCase() == "get" ) {
211                         s.url += (s.url.match(/\?/) ? "&" : "?") + s.data;
212
213                         // IE likes to send both get and post data, prevent this
214                         s.data = null;
215                 }
216
217                 // Watch for a new set of requests
218                 if ( s.global && ! jQuery.active++ )
219                         jQuery.event.trigger( "ajaxStart" );
220
221                 // If we're requesting a remote document
222                 // and trying to load JSON or Script with a GET
223                 if ( (!s.url.indexOf("http") || !s.url.indexOf("//")) && ( s.dataType == "script" || s.dataType =="json" ) && s.type.toLowerCase() == "get" ) {
224                         var head = document.getElementsByTagName("head")[0];
225                         var script = document.createElement("script");
226                         script.src = s.url;
227
228                         // Handle Script loading
229                         if ( !jsonp ) {
230                                 var done = false;
231
232                                 // Attach handlers for all browsers
233                                 script.onload = script.onreadystatechange = function(){
234                                         if ( !done && (!this.readyState || 
235                                                         this.readyState == "loaded" || this.readyState == "complete") ) {
236                                                 done = true;
237                                                 success();
238                                                 complete();
239                                                 head.removeChild( script );
240                                         }
241                                 };
242                         }
243
244                         head.appendChild(script);
245
246                         // We handle everything using the script element injection
247                         return;
248                 }
249
250                 var requestDone = false;
251
252                 // Create the request object; Microsoft failed to properly
253                 // implement the XMLHttpRequest in IE7, so we use the ActiveXObject when it is available
254                 var xml = window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
255
256                 // Open the socket
257                 xml.open(s.type, s.url, s.async);
258
259                 // Need an extra try/catch for cross domain requests in Firefox 3
260                 try {
261                         // Set the correct header, if data is being sent
262                         if ( s.data )
263                                 xml.setRequestHeader("Content-Type", s.contentType);
264
265                         // Set the If-Modified-Since header, if ifModified mode.
266                         if ( s.ifModified )
267                                 xml.setRequestHeader("If-Modified-Since",
268                                         jQuery.lastModified[s.url] || "Thu, 01 Jan 1970 00:00:00 GMT" );
269
270                         // Set header so the called script knows that it's an XMLHttpRequest
271                         xml.setRequestHeader("X-Requested-With", "XMLHttpRequest");
272                 } catch(e){}
273
274                 // Allow custom headers/mimetypes
275                 if ( s.beforeSend )
276                         s.beforeSend(xml);
277                         
278                 if ( s.global )
279                         jQuery.event.trigger("ajaxSend", [xml, s]);
280
281                 // Wait for a response to come back
282                 var onreadystatechange = function(isTimeout){
283                         // The transfer is complete and the data is available, or the request timed out
284                         if ( !requestDone && xml && (xml.readyState == 4 || isTimeout == "timeout") ) {
285                                 requestDone = true;
286                                 
287                                 // clear poll interval
288                                 if (ival) {
289                                         clearInterval(ival);
290                                         ival = null;
291                                 }
292                                 
293                                 status = isTimeout == "timeout" && "timeout" ||
294                                         !jQuery.httpSuccess( xml ) && "error" ||
295                                         s.ifModified && jQuery.httpNotModified( xml, s.url ) && "notmodified" ||
296                                         "success";
297
298                                 if ( status == "success" ) {
299                                         // Watch for, and catch, XML document parse errors
300                                         try {
301                                                 // process the data (runs the xml through httpData regardless of callback)
302                                                 data = jQuery.httpData( xml, s.dataType );
303                                         } catch(e) {
304                                                 status = "parsererror";
305                                         }
306                                 }
307
308                                 // Make sure that the request was successful or notmodified
309                                 if ( status == "success" ) {
310                                         // Cache Last-Modified header, if ifModified mode.
311                                         var modRes;
312                                         try {
313                                                 modRes = xml.getResponseHeader("Last-Modified");
314                                         } catch(e) {} // swallow exception thrown by FF if header is not available
315         
316                                         if ( s.ifModified && modRes )
317                                                 jQuery.lastModified[s.url] = modRes;
318
319                                         // JSONP handles its own success callback
320                                         if ( !jsonp )
321                                                 success();      
322                                 } else
323                                         jQuery.handleError(s, xml, status);
324
325                                 // Fire the complete handlers
326                                 complete();
327
328                                 // Stop memory leaks
329                                 if ( s.async )
330                                         xml = null;
331                         }
332                 };
333                 
334                 if ( s.async ) {
335                         // don't attach the handler to the request, just poll it instead
336                         var ival = setInterval(onreadystatechange, 13); 
337
338                         // Timeout checker
339                         if ( s.timeout > 0 )
340                                 setTimeout(function(){
341                                         // Check to see if the request is still happening
342                                         if ( xml ) {
343                                                 // Cancel the request
344                                                 xml.abort();
345         
346                                                 if( !requestDone )
347                                                         onreadystatechange( "timeout" );
348                                         }
349                                 }, s.timeout);
350                 }
351                         
352                 // Send the data
353                 try {
354                         xml.send(s.data);
355                 } catch(e) {
356                         jQuery.handleError(s, xml, null, e);
357                 }
358                 
359                 // firefox 1.5 doesn't fire statechange for sync requests
360                 if ( !s.async )
361                         onreadystatechange();
362                 
363                 // return XMLHttpRequest to allow aborting the request etc.
364                 return xml;
365
366                 function success(){
367                         // If a local callback was specified, fire it and pass it the data
368                         if ( s.success )
369                                 s.success( data, status );
370
371                         // Fire the global callback
372                         if ( s.global )
373                                 jQuery.event.trigger( "ajaxSuccess", [xml, s] );
374                 }
375
376                 function complete(){
377                         // Process result
378                         if ( s.complete )
379                                 s.complete(xml, status);
380
381                         // The request was completed
382                         if ( s.global )
383                                 jQuery.event.trigger( "ajaxComplete", [xml, s] );
384
385                         // Handle the global AJAX counter
386                         if ( s.global && ! --jQuery.active )
387                                 jQuery.event.trigger( "ajaxStop" );
388                 }
389         },
390
391         handleError: function( s, xml, status, e ) {
392                 // If a local callback was specified, fire it
393                 if ( s.error ) s.error( xml, status, e );
394
395                 // Fire the global callback
396                 if ( s.global )
397                         jQuery.event.trigger( "ajaxError", [xml, s, e] );
398         },
399
400         // Counter for holding the number of active queries
401         active: 0,
402
403         // Determines if an XMLHttpRequest was successful or not
404         httpSuccess: function( r ) {
405                 try {
406                         // IE error sometimes returns 1223 when it should be 204 so treat it as success, see #1450
407                         return !r.status && location.protocol == "file:" ||
408                                 ( r.status >= 200 && r.status < 300 ) || r.status == 304 || r.status == 1223 ||
409                                 jQuery.browser.safari && r.status == undefined;
410                 } catch(e){}
411                 return false;
412         },
413
414         // Determines if an XMLHttpRequest returns NotModified
415         httpNotModified: function( xml, url ) {
416                 try {
417                         var xmlRes = xml.getResponseHeader("Last-Modified");
418
419                         // Firefox always returns 200. check Last-Modified date
420                         return xml.status == 304 || xmlRes == jQuery.lastModified[url] ||
421                                 jQuery.browser.safari && xml.status == undefined;
422                 } catch(e){}
423                 return false;
424         },
425
426         httpData: function( r, type ) {
427                 var ct = r.getResponseHeader("content-type");
428                 var xml = type == "xml" || !type && ct && ct.indexOf("xml") >= 0;
429                 var data = xml ? r.responseXML : r.responseText;
430
431                 if ( xml && data.documentElement.tagName == "parsererror" )
432                         throw "parsererror";
433
434                 // If the type is "script", eval it in global context
435                 if ( type == "script" )
436                         jQuery.globalEval( data );
437
438                 // Get the JavaScript object, if JSON is used.
439                 if ( type == "json" )
440                         data = eval("(" + data + ")");
441
442                 return data;
443         },
444
445         // Serialize an array of form elements or a set of
446         // key/values into a query string
447         param: function( a ) {
448                 var s = [];
449
450                 // If an array was passed in, assume that it is an array
451                 // of form elements
452                 if ( a.constructor == Array || a.jquery )
453                         // Serialize the form elements
454                         jQuery.each( a, function(){
455                                 s.push( encodeURIComponent(this.name) + "=" + encodeURIComponent( this.value ) );
456                         });
457
458                 // Otherwise, assume that it's an object of key/value pairs
459                 else
460                         // Serialize the key/values
461                         for ( var j in a )
462                                 // If the value is an array then the key names need to be repeated
463                                 if ( a[j] && a[j].constructor == Array )
464                                         jQuery.each( a[j], function(){
465                                                 s.push( encodeURIComponent(j) + "=" + encodeURIComponent( this ) );
466                                         });
467                                 else
468                                         s.push( encodeURIComponent(j) + "=" + encodeURIComponent( a[j] ) );
469
470                 // Return the resulting serialization
471                 return s.join("&").replace(/%20/g, "+");
472         }
473
474 });