3 var rscript = /<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,
4 rselectTextarea = /^(?:select|textarea)/i,
5 rinput = /^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,
10 // Keep a copy of the old load method
11 _load = jQuery.fn.load;
14 load: function( url, params, callback ) {
15 if ( typeof url !== "string" && _load ) {
16 return _load.apply( this, arguments );
18 // Don't do a request if no elements are being requested
19 } else if ( !this.length ) {
23 var off = url.indexOf(" ");
25 var selector = url.slice(off, url.length);
26 url = url.slice(0, off);
29 // Default to a GET request
32 // If the second parameter was provided
35 if ( jQuery.isFunction( params ) ) {
36 // We assume that it's the callback
40 // Otherwise, build a param string
41 } else if ( typeof params === "object" ) {
42 params = jQuery.param( params, jQuery.ajaxSettings.traditional );
49 // Request the remote document
55 complete: function( res, status ) {
56 // If successful, inject the HTML into all the matched elements
57 if ( status === "success" || status === "notmodified" ) {
58 // See if a selector was specified
60 // Create a dummy div to hold the results
62 // inject the contents of the document in, removing the scripts
63 // to avoid any 'Permission Denied' errors in IE
64 .append(res.responseText.replace(rscript, ""))
66 // Locate the specified elements
69 // If not, just inject the full result
74 self.each( callback, [res.responseText, status, res] );
82 serialize: function() {
83 return jQuery.param(this.serializeArray());
86 serializeArray: function() {
87 return this.map(function(){
88 return this.elements ? jQuery.makeArray(this.elements) : this;
91 return this.name && !this.disabled &&
92 (this.checked || rselectTextarea.test(this.nodeName) ||
93 rinput.test(this.type));
95 .map(function(i, elem){
96 var val = jQuery(this).val();
100 jQuery.isArray(val) ?
101 jQuery.map( val, function(val, i){
102 return {name: elem.name, value: val};
104 {name: elem.name, value: val};
109 // Attach a bunch of functions for handling common AJAX events
110 jQuery.each( "ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "), function(i,o){
111 jQuery.fn[o] = function(f){
112 return this.bind(o, f);
118 get: function( url, data, callback, type ) {
119 // shift arguments if data argument was omited
120 if ( jQuery.isFunction( data ) ) {
121 type = type || callback;
135 getScript: function( url, callback ) {
136 return jQuery.get(url, null, callback, "script");
139 getJSON: function( url, data, callback ) {
140 return jQuery.get(url, data, callback, "json");
143 post: function( url, data, callback, type ) {
144 // shift arguments if data argument was omited
145 if ( jQuery.isFunction( data ) ) {
146 type = type || callback;
160 ajaxSetup: function( settings ) {
161 jQuery.extend( jQuery.ajaxSettings, settings );
168 contentType: "application/x-www-form-urlencoded",
182 return new window.XMLHttpRequest();
191 xml: "application/xml, text/xml",
194 json: "application/json, text/javascript",
205 // 1) They are useful to introduce custom dataTypes (see transport/jsonp for an example)
206 // 2) These are called:
207 // * BEFORE asking for a transport
208 // * AFTER param serialization (s.data is a string if s.processData is true)
209 // 3) They MUST be order agnostic
212 // Transports bindings
213 // 1) key is the dataType
214 // 2) the catchall symbol "*" can be used
215 // 3) selection will start with transport dataType and THEN go to "*" if needed
220 // 1) key is dataType
221 // 2) they are called to control successful response
222 // 3) error throws is used as error data
225 // Check if data is a string
226 "text": function(data) {
227 if ( typeof data != "string" ) {
228 jQuery.error("typeerror");
232 // Check if xml has been properly parsed
233 "xml": function(data) {
234 var documentElement = data ? data.documentElement : data;
235 if ( ! documentElement || ! documentElement.nodeName ) {
236 jQuery.error("typeerror");
238 if ( documentElement.nodeName == "parsererror" ) {
239 jQuery.error("parsererror");
244 // List of data converters
245 // 1) key format is "source_type => destination_type" (spaces required)
246 // 2) the catchall symbol "*" can be used for source_type
249 // Convert anything to text
250 "* => text": function(data) {
254 // Text to html (no transformation)
255 "text => html": function(data) {
259 // Evaluate text as a json expression
260 "text => json": jQuery.parseJSON,
263 "text => xml": function(data) {
265 if ( window.DOMParser ) { // Standard
266 parser = new DOMParser();
267 xml = parser.parseFromString(data,"text/xml");
269 xml = new ActiveXObject("Microsoft.XMLDOM");
279 ajax: function( url , s ) {
281 if ( arguments.length === 1 ) {
283 url = s ? s.url : undefined;
286 return jQuery.xhr().open( s ? s.type : undefined , url ).send( undefined , s );
290 // Serialize an array of form elements or a set of
291 // key/values into a query string
292 param: function( a, traditional ) {
294 add = function( key, value ) {
295 // If value is a function, invoke it and return its value
296 value = jQuery.isFunction(value) ? value() : value;
297 s[ s.length ] = encodeURIComponent(key) + "=" + encodeURIComponent(value);
300 // Set traditional to true for jQuery <= 1.3.2 behavior.
301 if ( traditional === undefined ) {
302 traditional = jQuery.ajaxSettings.traditional;
305 // If an array was passed in, assume that it is an array of form elements.
306 if ( jQuery.isArray(a) || a.jquery ) {
307 // Serialize the form elements
308 jQuery.each( a, function() {
309 add( this.name, this.value );
313 // If traditional, encode the "old" way (the way 1.3.2 or older
314 // did it), otherwise encode params recursively.
315 for ( var prefix in a ) {
316 buildParams( prefix, a[prefix], traditional, add );
320 // Return the resulting serialization
321 return s.join("&").replace(r20, "+");
325 function buildParams( prefix, obj, traditional, add ) {
326 if ( jQuery.isArray(obj) && obj.length ) {
327 // Serialize array item.
328 jQuery.each( obj, function( i, v ) {
329 if ( traditional || rbracket.test( prefix ) ) {
330 // Treat each array item as a scalar.
334 // If array item is non-scalar (array or object), encode its
335 // numeric index to resolve deserialization ambiguity issues.
336 // Note that rack (as of 1.0.0) can't currently deserialize
337 // nested arrays properly, and attempting to do so may cause
338 // a server error. Possible fixes are to modify rack's
339 // deserialization algorithm or to provide an option or flag
340 // to force array serialization to be shallow.
341 buildParams( prefix + "[" + ( typeof v === "object" || jQuery.isArray(v) ? i : "" ) + "]", v, traditional, add );
345 } else if ( !traditional && obj != null && typeof obj === "object" ) {
346 if ( jQuery.isEmptyObject( obj ) ) {
349 // Serialize object item.
351 jQuery.each( obj, function( k, v ) {
352 buildParams( prefix + "[" + k + "]", v, traditional, add );
357 // Serialize scalar item.
362 // This is still on the jQuery object... for now
363 // Want to move this to jQuery.ajax some day
366 // Counter for holding the number of active queries
369 // Last-Modified header cache for next request
376 * Create the request object; Microsoft failed to properly
377 * implement the XMLHttpRequest in IE7 (can't request local files),
378 * so we use the ActiveXObject when it is available
379 * Additionally XMLHttpRequest can be disabled in IE7/IE8 so
380 * we need a fallback.
382 if ( window.ActiveXObject ) {
383 jQuery.ajaxSettings.xhr = function() {
384 if ( window.location.protocol !== "file:" ) {
386 return new window.XMLHttpRequest();
387 } catch( xhrError ) {}
391 return new window.ActiveXObject("Microsoft.XMLHTTP");
392 } catch( activeError ) {}
396 var testXHR = jQuery.ajaxSettings.xhr();
398 // Does this browser support XHR requests?
399 jQuery.support.ajax = !!testXHR;
401 // Does this browser support crossDomain XHR requests
402 jQuery.support.cors = testXHR && "withCredentials" in testXHR;