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
38 complete: function(res, status){
39 // If successful, inject the HTML into all the matched elements
40 if ( status == "success" || status == "notmodified" )
41 // See if a selector was specified
43 // Create a dummy div to hold the results
45 // inject the contents of the document in, removing the scripts
46 // to avoid any 'Permission Denied' errors in IE
47 .append(res.responseText.replace(/<script(.|\s)*?\/script>/g, ""))
49 // Locate the specified elements
52 // If not, just inject the full result
55 // Add delay to account for Safari's delay in globalEval
56 setTimeout(function(){
57 self.each( callback, [res.responseText, status, res] );
64 serialize: function() {
65 return jQuery.param(this.serializeArray());
67 \r serializeArray: function() {
\r
68 return this.map(function(){
69 return jQuery.nodeName(this, "form") ?
70 jQuery.makeArray(this.elements) : this;
73 return this.name && !this.disabled &&
74 (this.checked || /select|textarea/i.test(this.nodeName) ||
75 /text|hidden|password/i.test(this.type));
77 .map(function(i, elem){
\r var val = jQuery(this).val();
78 return val == null ? null :
79 val.constructor == Array ?
80 jQuery.map( val, function(i, val){
\r return {name: elem.name, value: val};
82 {name: elem.name, value: val};
\r
86 // Attach a bunch of functions for handling common AJAX events
87 jQuery.each( "ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","), function(i,o){
88 jQuery.fn[o] = function(f){
89 return this.bind(o, f);
93 var jsc = (new Date).getTime();
96 get: function( url, data, callback, type ) {
97 // shift arguments if data argument was ommited
98 if ( jQuery.isFunction( data ) ) {
112 getScript: function( url, callback ) {
113 return jQuery.get(url, null, callback, "script");
116 getJSON: function( url, data, callback ) {
117 return jQuery.get(url, data, callback, "json");
120 post: function( url, data, callback, type ) {
121 if ( jQuery.isFunction( data ) ) {
135 ajaxSetup: function( settings ) {
136 jQuery.extend( jQuery.ajaxSettings, settings );
143 contentType: "application/x-www-form-urlencoded",
149 // Last-Modified header cache for next request
152 ajax: function( s ) {
153 var jsonp, jsre = /=(\?|%3F)/g, status, data;
155 // Extend the settings, but re-extend 's' so that it can be
156 // checked again later (in the test suite, specifically)
157 s = jQuery.extend(true, s, jQuery.extend(true, {}, jQuery.ajaxSettings, s));
159 // convert data if not already a string
160 if ( s.data && s.processData && typeof s.data != "string" )
161 s.data = jQuery.param(s.data);
163 // Break the data into one single string
164 var q = s.url.indexOf("?");
166 s.data = (s.data ? s.data + "&" : "") + s.url.slice(q + 1);
167 s.url = s.url.slice(0, q);
170 // Handle JSONP Parameter Callbacks
171 if ( s.dataType == "jsonp" ) {
172 if ( !s.data || !s.data.match(jsre) )
173 s.data = (s.data ? s.data + "&" : "") + (s.jsonp || "callback") + "=?";
177 // Build temporary JSONP function
178 if ( s.dataType == "json" && s.data && s.data.match(jsre) ) {
179 jsonp = "jsonp" + jsc++;
180 s.data = s.data.replace(jsre, "=" + jsonp);
182 // We need to make sure
183 // that a JSONP style response is executed properly
184 s.dataType = "script";
186 // Handle JSONP-style loading
187 window[ jsonp ] = function(tmp){
191 window[ jsonp ] = undefined;
192 try{ delete window[ jsonp ]; } catch(e){}
196 if ( s.dataType == "script" && s.cache == null )
199 if ( s.cache === false && s.type.toLowerCase() == "get" )
200 s.data = (s.data ? s.data + "&" : "") + "_=" + (new Date()).getTime();
202 // If data is available, append data to url for get requests
203 if ( s.data && s.type.toLowerCase() == "get" ) {
204 s.url += "?" + s.data;
206 // IE likes to send both get and post data, prevent this
210 // Watch for a new set of requests
211 if ( s.global && ! jQuery.active++ )
212 jQuery.event.trigger( "ajaxStart" );
214 // If we're requesting a remote document
215 // and trying to load JSON or Script
216 if ( !s.url.indexOf("http") && s.dataType == "script" ) {
217 var script = document.createElement("script");
220 // Handle Script loading
221 if ( !jsonp && (s.success || s.complete) ) {
224 // Attach handlers for all browsers
225 script.onload = script.onreadystatechange = function(){
226 if ( !done && (!this.readyState ||
227 this.readyState == "loaded" || this.readyState == "complete") ) {
231 document.body.removeChild( script );
236 document.body.appendChild(script);
238 // We handle everything using the script element injection
242 var requestDone = false;
244 // Create the request object; Microsoft failed to properly
245 // implement the XMLHttpRequest in IE7, so we use the ActiveXObject when it is available
246 var xml = window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
249 xml.open(s.type, s.url, s.async);
251 // Set the correct header, if data is being sent
253 xml.setRequestHeader("Content-Type", s.contentType);
255 // Set the If-Modified-Since header, if ifModified mode.
257 xml.setRequestHeader("If-Modified-Since",
258 jQuery.lastModified[s.url] || "Thu, 01 Jan 1970 00:00:00 GMT" );
260 // Set header so the called script knows that it's an XMLHttpRequest
261 xml.setRequestHeader("X-Requested-With", "XMLHttpRequest");
263 // Allow custom headers/mimetypes
268 jQuery.event.trigger("ajaxSend", [xml, s]);
270 // Wait for a response to come back
271 var onreadystatechange = function(isTimeout){
272 // The transfer is complete and the data is available, or the request timed out
273 if ( !requestDone && xml && (xml.readyState == 4 || isTimeout == "timeout") ) {
276 // clear poll interval
282 status = isTimeout == "timeout" && "timeout" ||
283 !jQuery.httpSuccess( xml ) && "error" ||
284 s.ifModified && jQuery.httpNotModified( xml, s.url ) && "notmodified" ||
287 if ( status == "success" ) {
288 // Watch for, and catch, XML document parse errors
290 // process the data (runs the xml through httpData regardless of callback)
291 data = jQuery.httpData( xml, s.dataType );
293 status = "parsererror";
297 // Make sure that the request was successful or notmodified
298 if ( status == "success" ) {
299 // Cache Last-Modified header, if ifModified mode.
302 modRes = xml.getResponseHeader("Last-Modified");
303 } catch(e) {} // swallow exception thrown by FF if header is not available
305 if ( s.ifModified && modRes )
306 jQuery.lastModified[s.url] = modRes;
308 // JSONP handles its own success callback
312 jQuery.handleError(s, xml, status);
314 // Fire the complete handlers
324 // don't attach the handler to the request, just poll it instead
325 var ival = setInterval(onreadystatechange, 13);
329 setTimeout(function(){
330 // Check to see if the request is still happening
332 // Cancel the request
336 onreadystatechange( "timeout" );
345 jQuery.handleError(s, xml, null, e);
348 // firefox 1.5 doesn't fire statechange for sync requests
350 onreadystatechange();
352 // return XMLHttpRequest to allow aborting the request etc.
356 // If a local callback was specified, fire it and pass it the data
358 s.success( data, status );
360 // Fire the global callback
362 jQuery.event.trigger( "ajaxSuccess", [xml, s] );
368 s.complete(xml, status);
370 // The request was completed
372 jQuery.event.trigger( "ajaxComplete", [xml, s] );
374 // Handle the global AJAX counter
375 if ( s.global && ! --jQuery.active )
376 jQuery.event.trigger( "ajaxStop" );
380 handleError: function( s, xml, status, e ) {
381 // If a local callback was specified, fire it
382 if ( s.error ) s.error( xml, status, e );
384 // Fire the global callback
386 jQuery.event.trigger( "ajaxError", [xml, s, e] );
389 // Counter for holding the number of active queries
392 // Determines if an XMLHttpRequest was successful or not
393 httpSuccess: function( r ) {
395 return !r.status && location.protocol == "file:" ||
396 ( r.status >= 200 && r.status < 300 ) || r.status == 304 ||
397 jQuery.browser.safari && r.status == undefined;
402 // Determines if an XMLHttpRequest returns NotModified
403 httpNotModified: function( xml, url ) {
405 var xmlRes = xml.getResponseHeader("Last-Modified");
407 // Firefox always returns 200. check Last-Modified date
408 return xml.status == 304 || xmlRes == jQuery.lastModified[url] ||
409 jQuery.browser.safari && xml.status == undefined;
414 httpData: function( r, type ) {
415 var ct = r.getResponseHeader("content-type");
416 var xml = type == "xml" || !type && ct && ct.indexOf("xml") >= 0;
417 var data = xml ? r.responseXML : r.responseText;
419 if ( xml && data.documentElement.tagName == "parsererror" )
422 // If the type is "script", eval it in global context
423 if ( type == "script" )
424 jQuery.globalEval( data );
426 // Get the JavaScript object, if JSON is used.
427 if ( type == "json" )
428 data = eval("(" + data + ")");
433 // Serialize an array of form elements or a set of
434 // key/values into a query string
435 param: function( a ) {
438 // If an array was passed in, assume that it is an array
440 if ( a.constructor == Array || a.jquery )
441 // Serialize the form elements
442 jQuery.each( a, function(){
443 s.push( encodeURIComponent(this.name) + "=" + encodeURIComponent( this.value ) );
446 // Otherwise, assume that it's an object of key/value pairs
448 // Serialize the key/values
450 // If the value is an array then the key names need to be repeated
451 if ( a[j] && a[j].constructor == Array )
452 jQuery.each( a[j], function(){
453 s.push( encodeURIComponent(j) + "=" + encodeURIComponent( this ) );
456 s.push( encodeURIComponent(j) + "=" + encodeURIComponent( a[j] ) );
458 // Return the resulting serialization
459 return s.join("&").replace(/%20/g, "+");