2 load: function( url, params, callback ) {
3 if ( jQuery.isFunction( url ) )
4 return this.bind("load", url);
6 var off = url.indexOf(" ");
8 var selector = url.slice(off, url.length);
9 url = url.slice(0, off);
12 callback = callback || function(){};
14 // Default to a GET request
17 // If the second parameter was provided
20 if ( jQuery.isFunction( params ) ) {
21 // We assume that it's the callback
25 // Otherwise, build a param string
27 params = jQuery.param( params );
33 // Request the remote document
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
44 // Create a dummy div to hold the results
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, ""))
50 // Locate the specified elements
53 // If not, just inject the full result
56 self.each( callback, [res.responseText, status, res] );
62 serialize: function() {
63 return jQuery.param(this.serializeArray());
65 serializeArray: function() {
66 return this.map(function(){
67 return jQuery.nodeName(this, "form") ?
68 jQuery.makeArray(this.elements) : this;
71 return this.name && !this.disabled &&
72 (this.checked || /select|textarea/i.test(this.nodeName) ||
73 /text|hidden|password/i.test(this.type));
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};
82 {name: elem.name, value: val};
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);
94 var jsc = (new Date).getTime();
97 get: function( url, data, callback, type ) {
98 // shift arguments if data argument was ommited
99 if ( jQuery.isFunction( data ) ) {
113 getScript: function( url, callback ) {
114 return jQuery.get(url, null, callback, "script");
117 getJSON: function( url, data, callback ) {
118 return jQuery.get(url, data, callback, "json");
121 post: function( url, data, callback, type ) {
122 if ( jQuery.isFunction( data ) ) {
136 ajaxSetup: function( settings ) {
137 jQuery.extend( jQuery.ajaxSettings, settings );
144 contentType: "application/x-www-form-urlencoded",
150 // Last-Modified header cache for next request
153 ajax: function( s ) {
154 var jsonp, jsre = /=\?(&|$)/g, status, data;
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));
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);
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") + "=?";
174 // Build temporary JSONP function
175 if ( s.dataType == "json" && (s.data && s.data.match(jsre) || s.url.match(jsre)) ) {
176 jsonp = "jsonp" + jsc++;
178 // Replace the =? sequence both in the query string and the data
180 s.data = (s.data + "").replace(jsre, "=" + jsonp + "$1");
181 s.url = s.url.replace(jsre, "=" + jsonp + "$1");
183 // We need to make sure
184 // that a JSONP style response is executed properly
185 s.dataType = "script";
187 // Handle JSONP-style loading
188 window[ jsonp ] = function(tmp){
193 window[ jsonp ] = undefined;
194 try{ delete window[ jsonp ]; } catch(e){}
196 head.removeChild( script );
200 if ( s.dataType == "script" && s.cache == null )
203 if ( s.cache === false && s.type.toLowerCase() == "get" ) {
204 var ts = (new Date()).getTime();
205 // try replacing _= if it is there
206 var ret = s.url.replace(/(\?|&)_=.*?(&|$)/, "$1_=" + ts + "$2");
207 // if nothing was replaced, add timestamp to the end
208 s.url = ret + ((ret == s.url) ? (s.url.match(/\?/) ? "&" : "?") + "_=" + ts : "");
211 // If data is available, append data to url for get requests
212 if ( s.data && s.type.toLowerCase() == "get" ) {
213 s.url += (s.url.match(/\?/) ? "&" : "?") + s.data;
215 // IE likes to send both get and post data, prevent this
219 // Watch for a new set of requests
220 if ( s.global && ! jQuery.active++ )
221 jQuery.event.trigger( "ajaxStart" );
223 // If we're requesting a remote document
224 // and trying to load JSON or Script with a GET
225 if ( (!s.url.indexOf("http") || !s.url.indexOf("//")) && ( s.dataType == "script" || s.dataType =="json" ) && s.type.toLowerCase() == "get" ) {
226 var head = document.getElementsByTagName("head")[0];
227 var script = document.createElement("script");
230 script.charset = s.scriptCharset;
232 // Handle Script loading
236 // Attach handlers for all browsers
237 script.onload = script.onreadystatechange = function(){
238 if ( !done && (!this.readyState ||
239 this.readyState == "loaded" || this.readyState == "complete") ) {
243 head.removeChild( script );
248 head.appendChild(script);
250 // We handle everything using the script element injection
254 var requestDone = false;
256 // Create the request object; Microsoft failed to properly
257 // implement the XMLHttpRequest in IE7, so we use the ActiveXObject when it is available
258 var xml = window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
261 xml.open(s.type, s.url, s.async);
263 // Need an extra try/catch for cross domain requests in Firefox 3
265 // Set the correct header, if data is being sent
267 xml.setRequestHeader("Content-Type", s.contentType);
269 // Set the If-Modified-Since header, if ifModified mode.
271 xml.setRequestHeader("If-Modified-Since",
272 jQuery.lastModified[s.url] || "Thu, 01 Jan 1970 00:00:00 GMT" );
274 // Set header so the called script knows that it's an XMLHttpRequest
275 xml.setRequestHeader("X-Requested-With", "XMLHttpRequest");
278 // Allow custom headers/mimetypes
283 jQuery.event.trigger("ajaxSend", [xml, s]);
285 // Wait for a response to come back
286 var onreadystatechange = function(isTimeout){
287 // The transfer is complete and the data is available, or the request timed out
288 if ( !requestDone && xml && (xml.readyState == 4 || isTimeout == "timeout") ) {
291 // clear poll interval
297 status = isTimeout == "timeout" && "timeout" ||
298 !jQuery.httpSuccess( xml ) && "error" ||
299 s.ifModified && jQuery.httpNotModified( xml, s.url ) && "notmodified" ||
302 if ( status == "success" ) {
303 // Watch for, and catch, XML document parse errors
305 // process the data (runs the xml through httpData regardless of callback)
306 data = jQuery.httpData( xml, s.dataType );
308 status = "parsererror";
312 // Make sure that the request was successful or notmodified
313 if ( status == "success" ) {
314 // Cache Last-Modified header, if ifModified mode.
317 modRes = xml.getResponseHeader("Last-Modified");
318 } catch(e) {} // swallow exception thrown by FF if header is not available
320 if ( s.ifModified && modRes )
321 jQuery.lastModified[s.url] = modRes;
323 // JSONP handles its own success callback
327 jQuery.handleError(s, xml, status);
329 // Fire the complete handlers
339 // don't attach the handler to the request, just poll it instead
340 var ival = setInterval(onreadystatechange, 13);
344 setTimeout(function(){
345 // Check to see if the request is still happening
347 // Cancel the request
351 onreadystatechange( "timeout" );
360 jQuery.handleError(s, xml, null, e);
363 // firefox 1.5 doesn't fire statechange for sync requests
365 onreadystatechange();
368 // If a local callback was specified, fire it and pass it the data
370 s.success( data, status );
372 // Fire the global callback
374 jQuery.event.trigger( "ajaxSuccess", [xml, s] );
380 s.complete(xml, status);
382 // The request was completed
384 jQuery.event.trigger( "ajaxComplete", [xml, s] );
386 // Handle the global AJAX counter
387 if ( s.global && ! --jQuery.active )
388 jQuery.event.trigger( "ajaxStop" );
391 // return XMLHttpRequest to allow aborting the request etc.
395 handleError: function( s, xml, status, e ) {
396 // If a local callback was specified, fire it
397 if ( s.error ) s.error( xml, status, e );
399 // Fire the global callback
401 jQuery.event.trigger( "ajaxError", [xml, s, e] );
404 // Counter for holding the number of active queries
407 // Determines if an XMLHttpRequest was successful or not
408 httpSuccess: function( r ) {
410 // IE error sometimes returns 1223 when it should be 204 so treat it as success, see #1450
411 return !r.status && location.protocol == "file:" ||
412 ( r.status >= 200 && r.status < 300 ) || r.status == 304 || r.status == 1223 ||
413 jQuery.browser.safari && r.status == undefined;
418 // Determines if an XMLHttpRequest returns NotModified
419 httpNotModified: function( xml, url ) {
421 var xmlRes = xml.getResponseHeader("Last-Modified");
423 // Firefox always returns 200. check Last-Modified date
424 return xml.status == 304 || xmlRes == jQuery.lastModified[url] ||
425 jQuery.browser.safari && xml.status == undefined;
430 httpData: function( r, type ) {
431 var ct = r.getResponseHeader("content-type");
432 var xml = type == "xml" || !type && ct && ct.indexOf("xml") >= 0;
433 var data = xml ? r.responseXML : r.responseText;
435 if ( xml && data.documentElement.tagName == "parsererror" )
438 // If the type is "script", eval it in global context
439 if ( type == "script" )
440 jQuery.globalEval( data );
442 // Get the JavaScript object, if JSON is used.
443 if ( type == "json" )
444 data = eval("(" + data + ")");
449 // Serialize an array of form elements or a set of
450 // key/values into a query string
451 param: function( a ) {
454 // If an array was passed in, assume that it is an array
456 if ( a.constructor == Array || a.jquery )
457 // Serialize the form elements
458 jQuery.each( a, function(){
459 s.push( encodeURIComponent(this.name) + "=" + encodeURIComponent( this.value ) );
462 // Otherwise, assume that it's an object of key/value pairs
464 // Serialize the key/values
466 // If the value is an array then the key names need to be repeated
467 if ( a[j] && a[j].constructor == Array )
468 jQuery.each( a[j], function(){
469 s.push( encodeURIComponent(j) + "=" + encodeURIComponent( this ) );
472 s.push( encodeURIComponent(j) + "=" + encodeURIComponent( a[j] ) );
474 // Return the resulting serialization
475 return s.join("&").replace(/%20/g, "+");