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 );
147 contentType: "application/x-www-form-urlencoded",
154 xml: "application/xml, text/xml",
156 script: "text/javascript, application/javascript",
157 json: "application/json, text/javascript",
163 // Last-Modified header cache for next request
166 ajax: function( s ) {
167 var jsonp, jsre = /=\?(&|$)/g, status, data;
169 // Extend the settings, but re-extend 's' so that it can be
170 // checked again later (in the test suite, specifically)
171 s = jQuery.extend(true, s, jQuery.extend(true, {}, jQuery.ajaxSettings, s));
173 // convert data if not already a string
174 if ( s.data && s.processData && typeof s.data != "string" )
175 s.data = jQuery.param(s.data);
177 // Handle JSONP Parameter Callbacks
178 if ( s.dataType == "jsonp" ) {
179 if ( s.type.toLowerCase() == "get" ) {
180 if ( !s.url.match(jsre) )
181 s.url += (s.url.match(/\?/) ? "&" : "?") + (s.jsonp || "callback") + "=?";
182 } else if ( !s.data || !s.data.match(jsre) )
183 s.data = (s.data ? s.data + "&" : "") + (s.jsonp || "callback") + "=?";
187 // Build temporary JSONP function
188 if ( s.dataType == "json" && (s.data && s.data.match(jsre) || s.url.match(jsre)) ) {
189 jsonp = "jsonp" + jsc++;
191 // Replace the =? sequence both in the query string and the data
193 s.data = (s.data + "").replace(jsre, "=" + jsonp + "$1");
194 s.url = s.url.replace(jsre, "=" + jsonp + "$1");
196 // We need to make sure
197 // that a JSONP style response is executed properly
198 s.dataType = "script";
200 // Handle JSONP-style loading
201 window[ jsonp ] = function(tmp){
206 window[ jsonp ] = undefined;
207 try{ delete window[ jsonp ]; } catch(e){}
209 head.removeChild( script );
213 if ( s.dataType == "script" && s.cache == null )
216 if ( s.cache === false && s.type.toLowerCase() == "get" ) {
218 // try replacing _= if it is there
219 var ret = s.url.replace(/(\?|&)_=.*?(&|$)/, "$1_=" + ts + "$2");
220 // if nothing was replaced, add timestamp to the end
221 s.url = ret + ((ret == s.url) ? (s.url.match(/\?/) ? "&" : "?") + "_=" + ts : "");
224 // If data is available, append data to url for get requests
225 if ( s.data && s.type.toLowerCase() == "get" ) {
226 s.url += (s.url.match(/\?/) ? "&" : "?") + s.data;
228 // IE likes to send both get and post data, prevent this
232 // Watch for a new set of requests
233 if ( s.global && ! jQuery.active++ )
234 jQuery.event.trigger( "ajaxStart" );
236 // If we're requesting a remote document
237 // and trying to load JSON or Script with a GET
238 if ( (!s.url.indexOf("http") || !s.url.indexOf("//")) && s.dataType == "script" && s.type.toLowerCase() == "get" ) {
239 var head = document.getElementsByTagName("head")[0];
240 var script = document.createElement("script");
243 script.charset = s.scriptCharset;
245 // Handle Script loading
249 // Attach handlers for all browsers
250 script.onload = script.onreadystatechange = function(){
251 if ( !done && (!this.readyState ||
252 this.readyState == "loaded" || this.readyState == "complete") ) {
256 head.removeChild( script );
261 head.appendChild(script);
263 // We handle everything using the script element injection
267 var requestDone = false;
269 // Create the request object; Microsoft failed to properly
270 // implement the XMLHttpRequest in IE7, so we use the ActiveXObject when it is available
271 var xml = window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
274 xml.open(s.type, s.url, s.async, s.username, s.password);
276 // Need an extra try/catch for cross domain requests in Firefox 3
278 // Set the correct header, if data is being sent
280 xml.setRequestHeader("Content-Type", s.contentType);
282 // Set the If-Modified-Since header, if ifModified mode.
284 xml.setRequestHeader("If-Modified-Since",
285 jQuery.lastModified[s.url] || "Thu, 01 Jan 1970 00:00:00 GMT" );
287 // Set header so the called script knows that it's an XMLHttpRequest
288 xml.setRequestHeader("X-Requested-With", "XMLHttpRequest");
290 // Set the Accepts header for the server, depending on the dataType
291 xml.setRequestHeader("Accept", s.dataType && s.accepts[ s.dataType ] ?
292 s.accepts[ s.dataType ] + ", */*" :
293 s.accepts._default );
296 // Allow custom headers/mimetypes
297 if ( s.beforeSend && s.beforeSend(xml, s) === false ) {
298 // cleanup active request counter
299 s.global && jQuery.active--;
300 // close opended socket
306 jQuery.event.trigger("ajaxSend", [xml, s]);
308 // Wait for a response to come back
309 var onreadystatechange = function(isTimeout){
310 // The transfer is complete and the data is available, or the request timed out
311 if ( !requestDone && xml && (xml.readyState == 4 || isTimeout == "timeout") ) {
314 // clear poll interval
320 status = isTimeout == "timeout" && "timeout" ||
321 !jQuery.httpSuccess( xml ) && "error" ||
322 s.ifModified && jQuery.httpNotModified( xml, s.url ) && "notmodified" ||
325 if ( status == "success" ) {
326 // Watch for, and catch, XML document parse errors
328 // process the data (runs the xml through httpData regardless of callback)
329 data = jQuery.httpData( xml, s.dataType );
331 status = "parsererror";
335 // Make sure that the request was successful or notmodified
336 if ( status == "success" ) {
337 // Cache Last-Modified header, if ifModified mode.
340 modRes = xml.getResponseHeader("Last-Modified");
341 } catch(e) {} // swallow exception thrown by FF if header is not available
343 if ( s.ifModified && modRes )
344 jQuery.lastModified[s.url] = modRes;
346 // JSONP handles its own success callback
350 jQuery.handleError(s, xml, status);
352 // Fire the complete handlers
362 // don't attach the handler to the request, just poll it instead
363 var ival = setInterval(onreadystatechange, 13);
367 setTimeout(function(){
368 // Check to see if the request is still happening
370 // Cancel the request
374 onreadystatechange( "timeout" );
383 jQuery.handleError(s, xml, null, e);
386 // firefox 1.5 doesn't fire statechange for sync requests
388 onreadystatechange();
391 // If a local callback was specified, fire it and pass it the data
393 s.success( data, status );
395 // Fire the global callback
397 jQuery.event.trigger( "ajaxSuccess", [xml, s] );
403 s.complete(xml, status);
405 // The request was completed
407 jQuery.event.trigger( "ajaxComplete", [xml, s] );
409 // Handle the global AJAX counter
410 if ( s.global && ! --jQuery.active )
411 jQuery.event.trigger( "ajaxStop" );
414 // return XMLHttpRequest to allow aborting the request etc.
418 handleError: function( s, xml, status, e ) {
419 // If a local callback was specified, fire it
420 if ( s.error ) s.error( xml, status, e );
422 // Fire the global callback
424 jQuery.event.trigger( "ajaxError", [xml, s, e] );
427 // Counter for holding the number of active queries
430 // Determines if an XMLHttpRequest was successful or not
431 httpSuccess: function( r ) {
433 // IE error sometimes returns 1223 when it should be 204 so treat it as success, see #1450
434 return !r.status && location.protocol == "file:" ||
435 ( r.status >= 200 && r.status < 300 ) || r.status == 304 || r.status == 1223 ||
436 jQuery.browser.safari && r.status == undefined;
441 // Determines if an XMLHttpRequest returns NotModified
442 httpNotModified: function( xml, url ) {
444 var xmlRes = xml.getResponseHeader("Last-Modified");
446 // Firefox always returns 200. check Last-Modified date
447 return xml.status == 304 || xmlRes == jQuery.lastModified[url] ||
448 jQuery.browser.safari && xml.status == undefined;
453 httpData: function( r, type ) {
454 var ct = r.getResponseHeader("content-type"),
455 xml = type == "xml" || !type && ct && ct.indexOf("xml") >= 0,
456 data = xml ? r.responseXML : r.responseText;
458 if ( xml && data.documentElement.tagName == "parsererror" )
461 // If the type is "script", eval it in global context
462 if ( type == "script" )
463 jQuery.globalEval( data );
465 // Get the JavaScript object, if JSON is used.
466 if ( type == "json" )
467 data = eval("(" + data + ")");
472 // Serialize an array of form elements or a set of
473 // key/values into a query string
474 param: function( a ) {
477 // If an array was passed in, assume that it is an array
479 if ( a.constructor == Array || a.jquery )
480 // Serialize the form elements
481 jQuery.each( a, function(){
482 s.push( encodeURIComponent(this.name) + "=" + encodeURIComponent( this.value ) );
485 // Otherwise, assume that it's an object of key/value pairs
487 // Serialize the key/values
489 // If the value is an array then the key names need to be repeated
490 if ( a[j] && a[j].constructor == Array )
491 jQuery.each( a[j], function(){
492 s.push( encodeURIComponent(j) + "=" + encodeURIComponent( this ) );
495 s.push( encodeURIComponent(j) + "=" + encodeURIComponent( jQuery.isFunction(a[j]) ? a[j]() : a[j] ) );
497 // Return the resulting serialization
498 return s.join("&").replace(/%20/g, "+");