2006-09-30 16:32:49 +02:00
|
|
|
jQuery.fn.extend({
|
2007-09-04 04:55:38 +02:00
|
|
|
load: function( url, params, callback ) {
|
2007-01-14 07:22:20 +01:00
|
|
|
if ( jQuery.isFunction( url ) )
|
2006-09-30 16:32:49 +02:00
|
|
|
return this.bind("load", url);
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2007-08-25 05:33:08 +02:00
|
|
|
var off = url.indexOf(" ");
|
2007-08-25 05:55:12 +02:00
|
|
|
if ( off >= 0 ) {
|
|
|
|
var selector = url.slice(off, url.length);
|
|
|
|
url = url.slice(0, off);
|
|
|
|
}
|
2007-08-25 05:33:08 +02:00
|
|
|
|
2006-09-30 16:32:49 +02:00
|
|
|
callback = callback || function(){};
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-09-30 16:32:49 +02:00
|
|
|
// Default to a GET request
|
|
|
|
var type = "GET";
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-09-30 16:32:49 +02:00
|
|
|
// If the second parameter was provided
|
2007-01-06 07:18:02 +01:00
|
|
|
if ( params )
|
2006-09-30 16:32:49 +02:00
|
|
|
// If it's a function
|
2007-01-16 12:38:33 +01:00
|
|
|
if ( jQuery.isFunction( params ) ) {
|
2006-09-30 16:32:49 +02:00
|
|
|
// We assume that it's the callback
|
|
|
|
callback = params;
|
|
|
|
params = null;
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-09-30 16:32:49 +02:00
|
|
|
// Otherwise, build a param string
|
|
|
|
} else {
|
|
|
|
params = jQuery.param( params );
|
|
|
|
type = "POST";
|
|
|
|
}
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-09-30 16:32:49 +02:00
|
|
|
var self = this;
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-09-30 16:32:49 +02:00
|
|
|
// Request the remote document
|
2006-11-03 12:30:57 +01:00
|
|
|
jQuery.ajax({
|
|
|
|
url: url,
|
|
|
|
type: type,
|
|
|
|
data: params,
|
|
|
|
complete: function(res, status){
|
2007-07-20 23:59:52 +02:00
|
|
|
// If successful, inject the HTML into all the matched elements
|
2007-09-04 04:55:38 +02:00
|
|
|
if ( status == "success" || status == "notmodified" )
|
2007-08-25 05:33:08 +02:00
|
|
|
// See if a selector was specified
|
|
|
|
self.html( selector ?
|
|
|
|
// Create a dummy div to hold the results
|
|
|
|
jQuery("<div/>")
|
|
|
|
// inject the contents of the document in, removing the scripts
|
|
|
|
// to avoid any 'Permission Denied' errors in IE
|
|
|
|
.append(res.responseText.replace(/<script(.|\s)*?\/script>/g, ""))
|
|
|
|
|
|
|
|
// Locate the specified elements
|
|
|
|
.find(selector) :
|
|
|
|
|
|
|
|
// If not, just inject the full result
|
|
|
|
res.responseText );
|
2007-07-20 23:59:52 +02:00
|
|
|
|
2007-08-20 01:37:26 +02:00
|
|
|
// Add delay to account for Safari's delay in globalEval
|
|
|
|
setTimeout(function(){
|
|
|
|
self.each( callback, [res.responseText, status, res] );
|
|
|
|
}, 13);
|
2006-11-03 12:30:57 +01:00
|
|
|
}
|
|
|
|
});
|
2006-09-30 16:32:49 +02:00
|
|
|
return this;
|
|
|
|
},
|
2006-05-16 18:18:52 +02:00
|
|
|
|
2006-09-30 16:32:49 +02:00
|
|
|
serialize: function() {
|
2007-09-05 19:06:05 +02:00
|
|
|
return jQuery.param(this.serializeArray());
|
|
|
|
},
|
2007-09-09 20:29:15 +02:00
|
|
|
serializeArray: function() {
|
2007-09-05 19:06:05 +02:00
|
|
|
return this.map(function(){
|
|
|
|
return jQuery.nodeName(this, "form") ?
|
|
|
|
jQuery.makeArray(this.elements) : this;
|
|
|
|
})
|
|
|
|
.filter(function(){
|
|
|
|
return this.name && !this.disabled &&
|
|
|
|
(this.checked || /select|textarea/i.test(this.nodeName) ||
|
|
|
|
/text|hidden|password/i.test(this.type));
|
|
|
|
})
|
2007-09-09 20:29:15 +02:00
|
|
|
.map(function(i, elem){
|
|
|
|
var val = jQuery(this).val();
|
2007-09-05 19:06:05 +02:00
|
|
|
return val == null ? null :
|
|
|
|
val.constructor == Array ?
|
2007-09-15 02:23:21 +02:00
|
|
|
jQuery.map( val, function(val, i){
|
2007-09-09 20:29:15 +02:00
|
|
|
return {name: elem.name, value: val};
|
2007-09-05 19:06:05 +02:00
|
|
|
}) :
|
2007-09-09 20:29:15 +02:00
|
|
|
{name: elem.name, value: val};
|
|
|
|
}).get();
|
|
|
|
}
|
2006-09-30 16:32:49 +02:00
|
|
|
});
|
2006-09-08 12:18:46 +02:00
|
|
|
|
2006-06-19 03:29:54 +02:00
|
|
|
// Attach a bunch of functions for handling common AJAX events
|
2007-01-06 06:31:47 +01:00
|
|
|
jQuery.each( "ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","), function(i,o){
|
|
|
|
jQuery.fn[o] = function(f){
|
|
|
|
return this.bind(o, f);
|
2006-08-17 06:18:32 +02:00
|
|
|
};
|
2007-01-06 06:31:47 +01:00
|
|
|
});
|
$.fn.formValues;
Gets form values and creates a key=>value array of the found values.
What's new?
- Only does this for ENABLED elements.
- Keeps the same order of the form.
- Optionally adds the button which is clicked (marks that name with an 'x' in the list)
example: $('#frmLogin').formValues('oButton');
$.fn.update (PREVIOUSLY: $.update, so beware!!!!)
Calls sURL with sAction (method) and sends the aValues. Puts the results from that call in the jQuery object and calls fCallback if provided.
What's new?
- Renamed $.update to $.fn.update, since it is more obvious to call $('someJQueryObject').update(...) then $.update($('someJQueryObject'), ...). It's also more jQuery-ish
- Added the method you want to use, since i used post before, now you can select between either GET or POST.
example: $('someJQueryObject').update('sURL', 'sAction', 'aValues', 'fCallback');
$.fn.serialize
Calls the form's action with the correct method and the serialized values. Optionally adds the button which is clicked if you provide it. When there are results, the fCallback function is called.
What's new?
- The entire function
example: $('someForm').serialize('sButton', 'fCallback');
2006-05-31 13:14:21 +02:00
|
|
|
|
2007-09-04 01:45:14 +02:00
|
|
|
var jsc = (new Date).getTime();
|
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
jQuery.extend({
|
2007-09-04 04:55:38 +02:00
|
|
|
get: function( url, data, callback, type ) {
|
2006-11-11 12:34:51 +01:00
|
|
|
// shift arguments if data argument was ommited
|
2007-01-14 07:22:20 +01:00
|
|
|
if ( jQuery.isFunction( data ) ) {
|
2006-07-10 05:20:56 +02:00
|
|
|
callback = data;
|
|
|
|
data = null;
|
|
|
|
}
|
2007-01-06 07:18:02 +01:00
|
|
|
|
2006-12-15 10:13:24 +01:00
|
|
|
return jQuery.ajax({
|
2007-03-17 15:18:06 +01:00
|
|
|
type: "GET",
|
2006-11-03 12:30:57 +01:00
|
|
|
url: url,
|
2006-11-11 12:34:51 +01:00
|
|
|
data: data,
|
|
|
|
success: callback,
|
2007-09-04 04:55:38 +02:00
|
|
|
dataType: type
|
2006-11-03 12:30:57 +01:00
|
|
|
});
|
2006-08-17 06:18:32 +02:00
|
|
|
},
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-09-30 16:32:49 +02:00
|
|
|
getScript: function( url, callback ) {
|
2006-12-15 10:13:24 +01:00
|
|
|
return jQuery.get(url, null, callback, "script");
|
2006-09-08 12:18:46 +02:00
|
|
|
},
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-09-08 12:18:46 +02:00
|
|
|
getJSON: function( url, data, callback ) {
|
2006-12-15 10:13:24 +01:00
|
|
|
return jQuery.get(url, data, callback, "json");
|
2006-07-10 05:20:56 +02:00
|
|
|
},
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
post: function( url, data, callback, type ) {
|
2007-01-22 04:49:04 +01:00
|
|
|
if ( jQuery.isFunction( data ) ) {
|
|
|
|
callback = data;
|
|
|
|
data = {};
|
|
|
|
}
|
|
|
|
|
2006-12-15 10:13:24 +01:00
|
|
|
return jQuery.ajax({
|
2006-11-03 12:30:57 +01:00
|
|
|
type: "POST",
|
|
|
|
url: url,
|
2006-11-11 12:34:51 +01:00
|
|
|
data: data,
|
|
|
|
success: callback,
|
|
|
|
dataType: type
|
2006-07-10 05:20:56 +02:00
|
|
|
});
|
|
|
|
},
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2007-01-06 07:18:02 +01:00
|
|
|
ajaxSetup: function( settings ) {
|
2007-08-21 06:46:07 +02:00
|
|
|
jQuery.extend( jQuery.ajaxSettings, settings );
|
2006-08-17 06:18:32 +02:00
|
|
|
},
|
|
|
|
|
2006-12-22 14:56:36 +01:00
|
|
|
ajaxSettings: {
|
|
|
|
global: true,
|
|
|
|
type: "GET",
|
|
|
|
timeout: 0,
|
|
|
|
contentType: "application/x-www-form-urlencoded",
|
|
|
|
processData: true,
|
2007-01-14 23:51:55 +01:00
|
|
|
async: true,
|
|
|
|
data: null
|
2006-12-22 14:56:36 +01:00
|
|
|
},
|
2006-12-22 15:40:46 +01:00
|
|
|
|
|
|
|
// Last-Modified header cache for next request
|
|
|
|
lastModified: {},
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-11-03 12:30:57 +01:00
|
|
|
ajax: function( s ) {
|
2007-09-04 01:45:14 +02:00
|
|
|
var jsonp, jsre = /=(\?|%3F)/g, status, data;
|
|
|
|
|
2007-08-20 01:37:26 +02:00
|
|
|
// Extend the settings, but re-extend 's' so that it can be
|
|
|
|
// checked again later (in the test suite, specifically)
|
2007-08-21 06:42:31 +02:00
|
|
|
s = jQuery.extend(true, s, jQuery.extend(true, {}, jQuery.ajaxSettings, s));
|
2006-11-03 12:30:57 +01:00
|
|
|
|
2007-09-04 01:45:14 +02:00
|
|
|
// convert data if not already a string
|
|
|
|
if ( s.data && s.processData && typeof s.data != "string" )
|
|
|
|
s.data = jQuery.param(s.data);
|
2007-08-20 01:37:26 +02:00
|
|
|
|
2007-09-04 01:45:14 +02:00
|
|
|
// Handle JSONP Parameter Callbacks
|
|
|
|
if ( s.dataType == "jsonp" ) {
|
2007-09-15 03:18:30 +02:00
|
|
|
if ( s.type.toLowerCase() == "get" ) {
|
|
|
|
if ( !s.url.match(jsre) )
|
|
|
|
s.url += (s.url.match(/\?/) ? "&" : "?") + (s.jsonp || "callback") + "=?";
|
|
|
|
} else if ( !s.data || !s.data.match(jsre) )
|
2007-09-04 01:45:14 +02:00
|
|
|
s.data = (s.data ? s.data + "&" : "") + (s.jsonp || "callback") + "=?";
|
|
|
|
s.dataType = "json";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build temporary JSONP function
|
2007-11-17 00:54:45 +01:00
|
|
|
if ( s.dataType == "json" && (s.data && s.data.match(jsre) || s.url.match(jsre)) ) {
|
2007-09-04 01:45:14 +02:00
|
|
|
jsonp = "jsonp" + jsc++;
|
2007-09-15 03:18:30 +02:00
|
|
|
|
|
|
|
// Replace the =? sequence both in the query string and the data
|
|
|
|
if ( s.data )
|
2007-10-18 02:07:45 +02:00
|
|
|
s.data = (s.data + "").replace(jsre, "=" + jsonp);
|
2007-09-15 03:18:30 +02:00
|
|
|
s.url = s.url.replace(jsre, "=" + jsonp);
|
2007-09-04 01:45:14 +02:00
|
|
|
|
|
|
|
// We need to make sure
|
|
|
|
// that a JSONP style response is executed properly
|
|
|
|
s.dataType = "script";
|
|
|
|
|
|
|
|
// Handle JSONP-style loading
|
|
|
|
window[ jsonp ] = function(tmp){
|
|
|
|
data = tmp;
|
|
|
|
success();
|
2007-09-15 02:35:16 +02:00
|
|
|
complete();
|
2007-09-04 01:45:14 +02:00
|
|
|
// Garbage collect
|
|
|
|
window[ jsonp ] = undefined;
|
|
|
|
try{ delete window[ jsonp ]; } catch(e){}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( s.dataType == "script" && s.cache == null )
|
|
|
|
s.cache = false;
|
|
|
|
|
|
|
|
if ( s.cache === false && s.type.toLowerCase() == "get" )
|
2007-09-15 03:18:30 +02:00
|
|
|
s.url += (s.url.match(/\?/) ? "&" : "?") + "_=" + (new Date()).getTime();
|
2007-09-04 01:45:14 +02:00
|
|
|
|
|
|
|
// If data is available, append data to url for get requests
|
|
|
|
if ( s.data && s.type.toLowerCase() == "get" ) {
|
2007-09-15 03:18:30 +02:00
|
|
|
s.url += (s.url.match(/\?/) ? "&" : "?") + s.data;
|
2007-09-04 01:45:14 +02:00
|
|
|
|
|
|
|
// IE likes to send both get and post data, prevent this
|
|
|
|
s.data = null;
|
2006-07-10 05:20:56 +02:00
|
|
|
}
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
// Watch for a new set of requests
|
2006-11-03 12:30:57 +01:00
|
|
|
if ( s.global && ! jQuery.active++ )
|
2006-07-10 05:20:56 +02:00
|
|
|
jQuery.event.trigger( "ajaxStart" );
|
2006-08-22 09:32:25 +02:00
|
|
|
|
2007-09-04 01:45:14 +02:00
|
|
|
// If we're requesting a remote document
|
|
|
|
// and trying to load JSON or Script
|
|
|
|
if ( !s.url.indexOf("http") && s.dataType == "script" ) {
|
2007-09-09 20:09:27 +02:00
|
|
|
var head = document.getElementsByTagName("head")[0];
|
2007-09-04 01:45:14 +02:00
|
|
|
var script = document.createElement("script");
|
|
|
|
script.src = s.url;
|
|
|
|
|
|
|
|
// Handle Script loading
|
2007-10-18 01:13:31 +02:00
|
|
|
if ( !jsonp ) {
|
2007-09-04 01:45:14 +02:00
|
|
|
var done = false;
|
|
|
|
|
|
|
|
// Attach handlers for all browsers
|
|
|
|
script.onload = script.onreadystatechange = function(){
|
|
|
|
if ( !done && (!this.readyState ||
|
|
|
|
this.readyState == "loaded" || this.readyState == "complete") ) {
|
|
|
|
done = true;
|
|
|
|
success();
|
|
|
|
complete();
|
2007-09-09 20:09:27 +02:00
|
|
|
head.removeChild( script );
|
2007-09-04 01:45:14 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2007-09-09 20:09:27 +02:00
|
|
|
head.appendChild(script);
|
2007-09-04 01:45:14 +02:00
|
|
|
|
|
|
|
// We handle everything using the script element injection
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-08-22 09:32:25 +02:00
|
|
|
var requestDone = false;
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2007-04-03 23:19:54 +02:00
|
|
|
// Create the request object; Microsoft failed to properly
|
|
|
|
// implement the XMLHttpRequest in IE7, so we use the ActiveXObject when it is available
|
|
|
|
var xml = window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
// Open the socket
|
2006-11-17 11:15:31 +01:00
|
|
|
xml.open(s.type, s.url, s.async);
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
// Set the correct header, if data is being sent
|
2006-11-03 12:30:57 +01:00
|
|
|
if ( s.data )
|
2006-11-17 10:56:30 +01:00
|
|
|
xml.setRequestHeader("Content-Type", s.contentType);
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-08-17 06:18:32 +02:00
|
|
|
// Set the If-Modified-Since header, if ifModified mode.
|
2006-11-03 12:30:57 +01:00
|
|
|
if ( s.ifModified )
|
2006-08-17 06:18:32 +02:00
|
|
|
xml.setRequestHeader("If-Modified-Since",
|
2006-11-03 12:30:57 +01:00
|
|
|
jQuery.lastModified[s.url] || "Thu, 01 Jan 1970 00:00:00 GMT" );
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-09-30 16:32:49 +02:00
|
|
|
// Set header so the called script knows that it's an XMLHttpRequest
|
2006-07-10 05:20:56 +02:00
|
|
|
xml.setRequestHeader("X-Requested-With", "XMLHttpRequest");
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-12-04 20:37:49 +01:00
|
|
|
// Allow custom headers/mimetypes
|
2007-09-04 01:45:14 +02:00
|
|
|
if ( s.beforeSend )
|
2006-12-05 23:58:27 +01:00
|
|
|
s.beforeSend(xml);
|
2007-01-06 07:18:02 +01:00
|
|
|
|
|
|
|
if ( s.global )
|
2007-11-29 18:12:08 +01:00
|
|
|
jQuery.event.trigger("ajaxSend", [xml, s]);
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
// Wait for a response to come back
|
2006-11-03 12:30:57 +01:00
|
|
|
var onreadystatechange = function(isTimeout){
|
2006-08-17 06:18:32 +02:00
|
|
|
// The transfer is complete and the data is available, or the request timed out
|
2007-07-21 00:21:41 +02:00
|
|
|
if ( !requestDone && xml && (xml.readyState == 4 || isTimeout == "timeout") ) {
|
2006-08-22 09:32:25 +02:00
|
|
|
requestDone = true;
|
2007-02-22 21:37:37 +01:00
|
|
|
|
|
|
|
// clear poll interval
|
|
|
|
if (ival) {
|
|
|
|
clearInterval(ival);
|
|
|
|
ival = null;
|
|
|
|
}
|
|
|
|
|
2007-09-04 01:45:14 +02:00
|
|
|
status = isTimeout == "timeout" && "timeout" ||
|
2007-08-19 02:48:53 +02:00
|
|
|
!jQuery.httpSuccess( xml ) && "error" ||
|
|
|
|
s.ifModified && jQuery.httpNotModified( xml, s.url ) && "notmodified" ||
|
|
|
|
"success";
|
|
|
|
|
|
|
|
if ( status == "success" ) {
|
|
|
|
// Watch for, and catch, XML document parse errors
|
|
|
|
try {
|
2006-12-21 14:35:32 +01:00
|
|
|
// process the data (runs the xml through httpData regardless of callback)
|
2007-09-04 01:45:14 +02:00
|
|
|
data = jQuery.httpData( xml, s.dataType );
|
2007-08-19 02:48:53 +02:00
|
|
|
} catch(e) {
|
|
|
|
status = "parsererror";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure that the request was successful or notmodified
|
|
|
|
if ( status == "success" ) {
|
|
|
|
// Cache Last-Modified header, if ifModified mode.
|
|
|
|
var modRes;
|
|
|
|
try {
|
|
|
|
modRes = xml.getResponseHeader("Last-Modified");
|
|
|
|
} catch(e) {} // swallow exception thrown by FF if header is not available
|
2006-12-21 14:35:32 +01:00
|
|
|
|
2007-08-19 02:48:53 +02:00
|
|
|
if ( s.ifModified && modRes )
|
|
|
|
jQuery.lastModified[s.url] = modRes;
|
2007-09-04 01:45:14 +02:00
|
|
|
|
|
|
|
// JSONP handles its own success callback
|
|
|
|
if ( !jsonp )
|
|
|
|
success();
|
2007-08-19 02:48:53 +02:00
|
|
|
} else
|
|
|
|
jQuery.handleError(s, xml, status);
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2007-09-04 01:45:14 +02:00
|
|
|
// Fire the complete handlers
|
|
|
|
complete();
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-07-17 06:57:07 +02:00
|
|
|
// Stop memory leaks
|
2007-09-04 01:45:14 +02:00
|
|
|
if ( s.async )
|
2007-02-22 21:37:37 +01:00
|
|
|
xml = null;
|
2006-06-19 03:29:54 +02:00
|
|
|
}
|
2006-07-17 06:57:07 +02:00
|
|
|
};
|
2007-02-22 21:37:37 +01:00
|
|
|
|
2007-08-20 01:37:26 +02:00
|
|
|
if ( s.async ) {
|
|
|
|
// don't attach the handler to the request, just poll it instead
|
|
|
|
var ival = setInterval(onreadystatechange, 13);
|
|
|
|
|
|
|
|
// Timeout checker
|
|
|
|
if ( s.timeout > 0 )
|
|
|
|
setTimeout(function(){
|
|
|
|
// Check to see if the request is still happening
|
|
|
|
if ( xml ) {
|
|
|
|
// Cancel the request
|
|
|
|
xml.abort();
|
|
|
|
|
|
|
|
if( !requestDone )
|
|
|
|
onreadystatechange( "timeout" );
|
|
|
|
}
|
|
|
|
}, s.timeout);
|
|
|
|
}
|
2006-12-15 10:13:24 +01:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
// Send the data
|
2006-12-21 14:35:32 +01:00
|
|
|
try {
|
2007-02-22 21:37:37 +01:00
|
|
|
xml.send(s.data);
|
2006-12-21 14:35:32 +01:00
|
|
|
} catch(e) {
|
|
|
|
jQuery.handleError(s, xml, null, e);
|
|
|
|
}
|
2006-11-17 15:49:44 +01:00
|
|
|
|
2006-12-29 14:49:28 +01:00
|
|
|
// firefox 1.5 doesn't fire statechange for sync requests
|
2007-01-06 07:18:02 +01:00
|
|
|
if ( !s.async )
|
2006-12-29 14:49:28 +01:00
|
|
|
onreadystatechange();
|
|
|
|
|
2006-11-17 15:49:44 +01:00
|
|
|
// return XMLHttpRequest to allow aborting the request etc.
|
2007-02-22 21:37:37 +01:00
|
|
|
return xml;
|
2007-09-04 01:45:14 +02:00
|
|
|
|
|
|
|
function success(){
|
|
|
|
// If a local callback was specified, fire it and pass it the data
|
|
|
|
if ( s.success )
|
|
|
|
s.success( data, status );
|
|
|
|
|
|
|
|
// Fire the global callback
|
|
|
|
if ( s.global )
|
|
|
|
jQuery.event.trigger( "ajaxSuccess", [xml, s] );
|
|
|
|
}
|
|
|
|
|
|
|
|
function complete(){
|
|
|
|
// Process result
|
|
|
|
if ( s.complete )
|
|
|
|
s.complete(xml, status);
|
|
|
|
|
|
|
|
// The request was completed
|
|
|
|
if ( s.global )
|
|
|
|
jQuery.event.trigger( "ajaxComplete", [xml, s] );
|
|
|
|
|
|
|
|
// Handle the global AJAX counter
|
|
|
|
if ( s.global && ! --jQuery.active )
|
|
|
|
jQuery.event.trigger( "ajaxStop" );
|
|
|
|
}
|
2006-07-10 05:20:56 +02:00
|
|
|
},
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2007-01-06 07:18:02 +01:00
|
|
|
handleError: function( s, xml, status, e ) {
|
2006-12-21 14:35:32 +01:00
|
|
|
// If a local callback was specified, fire it
|
|
|
|
if ( s.error ) s.error( xml, status, e );
|
|
|
|
|
|
|
|
// Fire the global callback
|
2007-01-06 07:18:02 +01:00
|
|
|
if ( s.global )
|
2006-12-21 14:35:32 +01:00
|
|
|
jQuery.event.trigger( "ajaxError", [xml, s, e] );
|
|
|
|
},
|
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
// Counter for holding the number of active queries
|
|
|
|
active: 0,
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
// Determines if an XMLHttpRequest was successful or not
|
2007-01-06 07:18:02 +01:00
|
|
|
httpSuccess: function( r ) {
|
2006-12-21 16:23:59 +01:00
|
|
|
try {
|
2007-11-29 18:12:08 +01:00
|
|
|
// IE error sometimes returns 1223 when it should be 204 so treat it as success, see #1450
|
2006-12-21 16:23:59 +01:00
|
|
|
return !r.status && location.protocol == "file:" ||
|
2007-11-29 18:12:08 +01:00
|
|
|
( r.status >= 200 && r.status < 300 ) || r.status == 304 || r.status == 1223 ||
|
2006-12-21 16:23:59 +01:00
|
|
|
jQuery.browser.safari && r.status == undefined;
|
|
|
|
} catch(e){}
|
|
|
|
return false;
|
2006-08-17 06:18:32 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// Determines if an XMLHttpRequest returns NotModified
|
2007-01-06 07:18:02 +01:00
|
|
|
httpNotModified: function( xml, url ) {
|
2006-12-21 16:23:59 +01:00
|
|
|
try {
|
|
|
|
var xmlRes = xml.getResponseHeader("Last-Modified");
|
2006-08-17 06:18:32 +02:00
|
|
|
|
2006-12-21 16:23:59 +01:00
|
|
|
// Firefox always returns 200. check Last-Modified date
|
|
|
|
return xml.status == 304 || xmlRes == jQuery.lastModified[url] ||
|
|
|
|
jQuery.browser.safari && xml.status == undefined;
|
|
|
|
} catch(e){}
|
|
|
|
return false;
|
2006-07-10 05:20:56 +02:00
|
|
|
},
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2007-01-06 07:18:02 +01:00
|
|
|
httpData: function( r, type ) {
|
2006-07-10 05:20:56 +02:00
|
|
|
var ct = r.getResponseHeader("content-type");
|
2007-07-21 02:52:30 +02:00
|
|
|
var xml = type == "xml" || !type && ct && ct.indexOf("xml") >= 0;
|
2007-09-04 01:45:14 +02:00
|
|
|
var data = xml ? r.responseXML : r.responseText;
|
2007-07-21 02:52:30 +02:00
|
|
|
|
|
|
|
if ( xml && data.documentElement.tagName == "parsererror" )
|
|
|
|
throw "parsererror";
|
2006-08-17 06:18:32 +02:00
|
|
|
|
2006-11-21 10:21:38 +01:00
|
|
|
// If the type is "script", eval it in global context
|
2007-01-06 07:18:02 +01:00
|
|
|
if ( type == "script" )
|
2007-07-31 04:59:53 +02:00
|
|
|
jQuery.globalEval( data );
|
2006-08-17 06:18:32 +02:00
|
|
|
|
2006-08-31 08:32:27 +02:00
|
|
|
// Get the JavaScript object, if JSON is used.
|
2007-01-06 07:18:02 +01:00
|
|
|
if ( type == "json" )
|
2007-06-17 00:19:17 +02:00
|
|
|
data = eval("(" + data + ")");
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-08-17 06:18:32 +02:00
|
|
|
return data;
|
2006-07-10 05:20:56 +02:00
|
|
|
},
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
// Serialize an array of form elements or a set of
|
|
|
|
// key/values into a query string
|
2007-01-06 07:18:02 +01:00
|
|
|
param: function( a ) {
|
2006-07-10 05:20:56 +02:00
|
|
|
var s = [];
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
// If an array was passed in, assume that it is an array
|
|
|
|
// of form elements
|
2007-01-06 07:18:02 +01:00
|
|
|
if ( a.constructor == Array || a.jquery )
|
2006-07-10 05:20:56 +02:00
|
|
|
// Serialize the form elements
|
2007-01-14 22:49:59 +01:00
|
|
|
jQuery.each( a, function(){
|
|
|
|
s.push( encodeURIComponent(this.name) + "=" + encodeURIComponent( this.value ) );
|
|
|
|
});
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
// Otherwise, assume that it's an object of key/value pairs
|
2007-01-06 07:18:02 +01:00
|
|
|
else
|
2006-07-10 05:20:56 +02:00
|
|
|
// Serialize the key/values
|
2007-01-06 07:18:02 +01:00
|
|
|
for ( var j in a )
|
2006-11-30 21:52:24 +01:00
|
|
|
// If the value is an array then the key names need to be repeated
|
2007-01-20 05:04:02 +01:00
|
|
|
if ( a[j] && a[j].constructor == Array )
|
2007-01-14 22:49:59 +01:00
|
|
|
jQuery.each( a[j], function(){
|
2007-07-26 02:31:48 +02:00
|
|
|
s.push( encodeURIComponent(j) + "=" + encodeURIComponent( this ) );
|
2007-01-14 22:49:59 +01:00
|
|
|
});
|
2007-01-06 07:18:02 +01:00
|
|
|
else
|
2007-01-07 21:56:17 +01:00
|
|
|
s.push( encodeURIComponent(j) + "=" + encodeURIComponent( a[j] ) );
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
// Return the resulting serialization
|
2007-09-05 19:06:05 +02:00
|
|
|
return s.join("&").replace(/%20/g, "+");
|
2006-07-10 05:20:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
});
|