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 callback = callback || function(){};
17 // Default to a GET request
20 // If the second parameter was provided
23 if ( jQuery.isFunction( params ) ) {
24 // We assume that it's the callback
28 // Otherwise, build a param string
30 params = jQuery.param( params );
36 // Request the remote document
42 complete: function(res, status){
43 // If successful, inject the HTML into all the matched elements
44 if ( status == "success" || status == "notmodified" )
45 // See if a selector was specified
47 // Create a dummy div to hold the results
49 // inject the contents of the document in, removing the scripts
50 // to avoid any 'Permission Denied' errors in IE
51 .append(res.responseText.replace(/<script(.|\s)*?\/script>/g, ""))
53 // Locate the specified elements
56 // If not, just inject the full result
59 self.each( callback, [res.responseText, status, res] );
65 serialize: function() {
66 return jQuery.param(this.serializeArray());
68 serializeArray: function() {
69 return this.map(function(){
70 return jQuery.nodeName(this, "form") ?
71 jQuery.makeArray(this.elements) : this;
74 return this.name && !this.disabled &&
75 (this.checked || /select|textarea/i.test(this.nodeName) ||
76 /text|hidden|password/i.test(this.type));
78 .map(function(i, elem){
79 var val = jQuery(this).val();
80 return val == null ? null :
81 val.constructor == Array ?
82 jQuery.map( val, function(val, i){
83 return {name: elem.name, value: val};
85 {name: elem.name, value: val};
90 // Attach a bunch of functions for handling common AJAX events
91 jQuery.each( "ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","), function(i,o){
92 jQuery.fn[o] = function(f){
93 return this.bind(o, f);
100 get: function( url, data, callback, type ) {
101 // shift arguments if data argument was ommited
102 if ( jQuery.isFunction( data ) ) {
116 getScript: function( url, callback ) {
117 return jQuery.get(url, null, callback, "script");
120 getJSON: function( url, data, callback ) {
121 return jQuery.get(url, data, callback, "json");
124 post: function( url, data, callback, type ) {
125 if ( jQuery.isFunction( data ) ) {
139 ajaxSetup: function( settings ) {
140 jQuery.extend( jQuery.ajaxSettings, settings );
148 contentType: "application/x-www-form-urlencoded",
155 xml: "application/xml, text/xml",
157 script: "text/javascript, application/javascript",
158 json: "application/json, text/javascript",
164 // Last-Modified header cache for next request
167 ajax: function( s ) {
168 var jsonp, jsre = /=\?(&|$)/g, status, data;
170 // Extend the settings, but re-extend 's' so that it can be
171 // checked again later (in the test suite, specifically)
172 s = jQuery.extend(true, s, jQuery.extend(true, {}, jQuery.ajaxSettings, s));
174 // convert data if not already a string
175 if ( s.data && s.processData && typeof s.data != "string" )
176 s.data = jQuery.param(s.data);
178 // Handle JSONP Parameter Callbacks
179 if ( s.dataType == "jsonp" ) {
180 if ( s.type.toLowerCase() == "get" ) {
181 if ( !s.url.match(jsre) )
182 s.url += (s.url.match(/\?/) ? "&" : "?") + (s.jsonp || "callback") + "=?";
183 } else if ( !s.data || !s.data.match(jsre) )
184 s.data = (s.data ? s.data + "&" : "") + (s.jsonp || "callback") + "=?";
188 // Build temporary JSONP function
189 if ( s.dataType == "json" && (s.data && s.data.match(jsre) || s.url.match(jsre)) ) {
190 jsonp = "jsonp" + jsc++;
192 // Replace the =? sequence both in the query string and the data
194 s.data = (s.data + "").replace(jsre, "=" + jsonp + "$1");
195 s.url = s.url.replace(jsre, "=" + jsonp + "$1");
197 // We need to make sure
198 // that a JSONP style response is executed properly
199 s.dataType = "script";
201 // Handle JSONP-style loading
202 window[ jsonp ] = function(tmp){
207 window[ jsonp ] = undefined;
208 try{ delete window[ jsonp ]; } catch(e){}
210 head.removeChild( script );
214 if ( s.dataType == "script" && s.cache == null )
217 if ( s.cache === false && s.type.toLowerCase() == "get" ) {
219 // try replacing _= if it is there
220 var ret = s.url.replace(/(\?|&)_=.*?(&|$)/, "$1_=" + ts + "$2");
221 // if nothing was replaced, add timestamp to the end
222 s.url = ret + ((ret == s.url) ? (s.url.match(/\?/) ? "&" : "?") + "_=" + ts : "");
225 // If data is available, append data to url for get requests
226 if ( s.data && s.type.toLowerCase() == "get" ) {
227 s.url += (s.url.match(/\?/) ? "&" : "?") + s.data;
229 // IE likes to send both get and post data, prevent this
233 // Watch for a new set of requests
234 if ( s.global && ! jQuery.active++ )
235 jQuery.event.trigger( "ajaxStart" );
237 // Matches an absolute URL, and saves the domain
238 var remote = /^(?:\w+:)?\/\/([^\/?#]+)/;
240 // If we're requesting a remote document
241 // and trying to load JSON or Script with a GET
242 if ( s.dataType == "script" && s.type.toLowerCase() == "get"
243 && remote.test(s.url) && remote.exec(s.url)[1] != location.host ){
244 var head = document.getElementsByTagName("head")[0];
245 var script = document.createElement("script");
248 script.charset = s.scriptCharset;
250 // Handle Script loading
254 // Attach handlers for all browsers
255 script.onload = script.onreadystatechange = function(){
256 if ( !done && (!this.readyState ||
257 this.readyState == "loaded" || this.readyState == "complete") ) {
261 head.removeChild( script );
266 head.appendChild(script);
268 // We handle everything using the script element injection
272 var requestDone = false;
274 // Create the request object; Microsoft failed to properly
275 // implement the XMLHttpRequest in IE7, so we use the ActiveXObject when it is available
276 var xml = window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
279 xml.open(s.type, s.url, s.async, s.username, s.password);
281 // Need an extra try/catch for cross domain requests in Firefox 3
283 // Set the correct header, if data is being sent
285 xml.setRequestHeader("Content-Type", s.contentType);
287 // Set the If-Modified-Since header, if ifModified mode.
289 xml.setRequestHeader("If-Modified-Since",
290 jQuery.lastModified[s.url] || "Thu, 01 Jan 1970 00:00:00 GMT" );
292 // Set header so the called script knows that it's an XMLHttpRequest
293 xml.setRequestHeader("X-Requested-With", "XMLHttpRequest");
295 // Set the Accepts header for the server, depending on the dataType
296 xml.setRequestHeader("Accept", s.dataType && s.accepts[ s.dataType ] ?
297 s.accepts[ s.dataType ] + ", */*" :
298 s.accepts._default );
301 // Allow custom headers/mimetypes
302 if ( s.beforeSend && s.beforeSend(xml, s) === false ) {
303 // cleanup active request counter
304 s.global && jQuery.active--;
305 // close opended socket
311 jQuery.event.trigger("ajaxSend", [xml, s]);
313 // Wait for a response to come back
314 var onreadystatechange = function(isTimeout){
315 // The transfer is complete and the data is available, or the request timed out
316 if ( !requestDone && xml && (xml.readyState == 4 || isTimeout == "timeout") ) {
319 // clear poll interval
325 status = isTimeout == "timeout" && "timeout" ||
326 !jQuery.httpSuccess( xml ) && "error" ||
327 s.ifModified && jQuery.httpNotModified( xml, s.url ) && "notmodified" ||
330 if ( status == "success" ) {
331 // Watch for, and catch, XML document parse errors
333 // process the data (runs the xml through httpData regardless of callback)
334 data = jQuery.httpData( xml, s.dataType );
336 status = "parsererror";
340 // Make sure that the request was successful or notmodified
341 if ( status == "success" ) {
342 // Cache Last-Modified header, if ifModified mode.
345 modRes = xml.getResponseHeader("Last-Modified");
346 } catch(e) {} // swallow exception thrown by FF if header is not available
348 if ( s.ifModified && modRes )
349 jQuery.lastModified[s.url] = modRes;
351 // JSONP handles its own success callback
355 jQuery.handleError(s, xml, status);
357 // Fire the complete handlers
367 // don't attach the handler to the request, just poll it instead
368 var ival = setInterval(onreadystatechange, 13);
372 setTimeout(function(){
373 // Check to see if the request is still happening
375 // Cancel the request
379 onreadystatechange( "timeout" );
388 jQuery.handleError(s, xml, null, e);
391 // firefox 1.5 doesn't fire statechange for sync requests
393 onreadystatechange();
396 // If a local callback was specified, fire it and pass it the data
398 s.success( data, status );
400 // Fire the global callback
402 jQuery.event.trigger( "ajaxSuccess", [xml, s] );
408 s.complete(xml, status);
410 // The request was completed
412 jQuery.event.trigger( "ajaxComplete", [xml, s] );
414 // Handle the global AJAX counter
415 if ( s.global && ! --jQuery.active )
416 jQuery.event.trigger( "ajaxStop" );
419 // return XMLHttpRequest to allow aborting the request etc.
423 handleError: function( s, xml, status, e ) {
424 // If a local callback was specified, fire it
425 if ( s.error ) s.error( xml, status, e );
427 // Fire the global callback
429 jQuery.event.trigger( "ajaxError", [xml, s, e] );
432 // Counter for holding the number of active queries
435 // Determines if an XMLHttpRequest was successful or not
436 httpSuccess: function( r ) {
438 // IE error sometimes returns 1223 when it should be 204 so treat it as success, see #1450
439 return !r.status && location.protocol == "file:" ||
440 ( r.status >= 200 && r.status < 300 ) || r.status == 304 || r.status == 1223 ||
441 jQuery.browser.safari && r.status == undefined;
446 // Determines if an XMLHttpRequest returns NotModified
447 httpNotModified: function( xml, url ) {
449 var xmlRes = xml.getResponseHeader("Last-Modified");
451 // Firefox always returns 200. check Last-Modified date
452 return xml.status == 304 || xmlRes == jQuery.lastModified[url] ||
453 jQuery.browser.safari && xml.status == undefined;
458 httpData: function( r, type ) {
459 var ct = r.getResponseHeader("content-type"),
460 xml = type == "xml" || !type && ct && ct.indexOf("xml") >= 0,
461 data = xml ? r.responseXML : r.responseText;
463 if ( xml && data.documentElement.tagName == "parsererror" )
466 // If the type is "script", eval it in global context
467 if ( type == "script" )
468 jQuery.globalEval( data );
470 // Get the JavaScript object, if JSON is used.
471 if ( type == "json" )
472 data = eval("(" + data + ")");
477 // Serialize an array of form elements or a set of
478 // key/values into a query string
479 param: function( a ) {
482 // If an array was passed in, assume that it is an array
484 if ( a.constructor == Array || a.jquery )
485 // Serialize the form elements
486 jQuery.each( a, function(){
487 s.push( encodeURIComponent(this.name) + "=" + encodeURIComponent( this.value ) );
490 // Otherwise, assume that it's an object of key/value pairs
492 // Serialize the key/values
494 // If the value is an array then the key names need to be repeated
495 if ( a[j] && a[j].constructor == Array )
496 jQuery.each( a[j], function(){
497 s.push( encodeURIComponent(j) + "=" + encodeURIComponent( this ) );
500 s.push( encodeURIComponent(j) + "=" + encodeURIComponent( jQuery.isFunction(a[j]) ? a[j]() : a[j] ) );
502 // Return the resulting serialization
503 return s.join("&").replace(/%20/g, "+");