2006-09-30 16:32:49 +02:00
|
|
|
jQuery.fn.extend({
|
2008-05-08 18:23:43 +02:00
|
|
|
// Keep a copy of the old load
|
|
|
|
_load: jQuery.fn.load,
|
2008-05-13 03:45:58 +02:00
|
|
|
|
2007-09-04 04:55:38 +02:00
|
|
|
load: function( url, params, callback ) {
|
2008-11-17 17:32:05 +01:00
|
|
|
if ( typeof url !== "string" )
|
2008-05-08 18:23:43 +02:00
|
|
|
return this._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
|
|
|
// 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
|
2008-11-17 17:32:05 +01:00
|
|
|
} else if( typeof params === "object" ) {
|
2006-09-30 16:32:49 +02:00
|
|
|
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,
|
2007-12-14 18:06:41 +01:00
|
|
|
dataType: "html",
|
2006-11-03 12:30:57 +01:00
|
|
|
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
|
|
|
|
2008-08-11 03:35:23 +02:00
|
|
|
if( callback )
|
|
|
|
self.each( callback, [res.responseText, status, res] );
|
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(){
|
2008-08-13 03:44:36 +02:00
|
|
|
return this.elements ? jQuery.makeArray(this.elements) : this;
|
2007-09-05 19:06:05 +02:00
|
|
|
})
|
|
|
|
.filter(function(){
|
2008-05-13 03:45:58 +02:00
|
|
|
return this.name && !this.disabled &&
|
|
|
|
(this.checked || /select|textarea/i.test(this.nodeName) ||
|
2009-02-18 20:43:14 +01:00
|
|
|
/text|hidden|password|search/i.test(this.type));
|
2007-09-05 19:06:05 +02:00
|
|
|
})
|
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 :
|
2008-10-29 03:01:22 +01:00
|
|
|
jQuery.isArray(val) ?
|
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
|
|
|
|
2008-04-30 01:34:50 +02:00
|
|
|
var jsc = now();
|
2007-09-04 01:45:14 +02:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
jQuery.extend({
|
2009-03-23 02:55:17 +01:00
|
|
|
|
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;
|
|
|
|
}
|
2008-05-13 03:45:58 +02: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: {
|
2008-05-14 21:50:24 +02:00
|
|
|
url: location.href,
|
2006-12-22 14:56:36 +01:00
|
|
|
global: true,
|
|
|
|
type: "GET",
|
|
|
|
contentType: "application/x-www-form-urlencoded",
|
|
|
|
processData: true,
|
2007-01-14 23:51:55 +01:00
|
|
|
async: true,
|
2009-01-04 22:15:02 +01:00
|
|
|
/*
|
|
|
|
timeout: 0,
|
2008-01-07 02:03:31 +01:00
|
|
|
data: null,
|
|
|
|
username: null,
|
2008-01-14 19:19:28 +01:00
|
|
|
password: null,
|
2009-01-04 22:15:02 +01:00
|
|
|
*/
|
2008-08-07 15:07:21 +02:00
|
|
|
// Create the request object; Microsoft failed to properly
|
|
|
|
// implement the XMLHttpRequest in IE7, so we use the ActiveXObject when it is available
|
|
|
|
// This function can be overriden by calling jQuery.ajaxSetup
|
|
|
|
xhr:function(){
|
|
|
|
return window.ActiveXObject ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
|
|
|
|
},
|
2008-01-14 19:19:28 +01:00
|
|
|
accepts: {
|
|
|
|
xml: "application/xml, text/xml",
|
|
|
|
html: "text/html",
|
|
|
|
script: "text/javascript, application/javascript",
|
|
|
|
json: "application/json, text/javascript",
|
|
|
|
text: "text/plain",
|
2008-01-14 20:37:05 +01:00
|
|
|
_default: "*/*"
|
2008-01-14 19:19:28 +01:00
|
|
|
}
|
2006-12-22 14:56:36 +01:00
|
|
|
},
|
2008-05-13 03:45:58 +02:00
|
|
|
|
2006-12-22 15:40:46 +01:00
|
|
|
// Last-Modified header cache for next request
|
|
|
|
lastModified: {},
|
2009-06-15 15:36:12 +02:00
|
|
|
etag: {},
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-11-03 12:30:57 +01:00
|
|
|
ajax: function( s ) {
|
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
|
|
|
|
2008-05-15 16:16:19 +02:00
|
|
|
var jsonp, jsre = /=\?(&|$)/g, status, data,
|
|
|
|
type = s.type.toUpperCase();
|
|
|
|
|
2007-09-04 01:45:14 +02:00
|
|
|
// convert data if not already a string
|
2008-11-17 17:32:05 +01:00
|
|
|
if ( s.data && s.processData && typeof s.data !== "string" )
|
2007-09-04 01:45:14 +02:00
|
|
|
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" ) {
|
2008-05-15 16:16:19 +02:00
|
|
|
if ( type == "GET" ) {
|
2009-07-19 15:21:51 +02:00
|
|
|
if ( jsre.test( !s.url ) )
|
|
|
|
s.url += (/\?/.test( s.url ) ? "&" : "?") + (s.jsonp || "callback") + "=?";
|
|
|
|
} else if ( !s.data || !jsre.test(s.data) )
|
2007-09-04 01:45:14 +02:00
|
|
|
s.data = (s.data ? s.data + "&" : "") + (s.jsonp || "callback") + "=?";
|
|
|
|
s.dataType = "json";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build temporary JSONP function
|
2009-07-19 15:21:51 +02:00
|
|
|
if ( s.dataType == "json" && (s.data && jsre.test(s.data) || jsre.test(s.url)) ) {
|
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-12-17 01:48:12 +01:00
|
|
|
s.data = (s.data + "").replace(jsre, "=" + jsonp + "$1");
|
|
|
|
s.url = s.url.replace(jsre, "=" + jsonp + "$1");
|
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){}
|
2007-12-17 01:51:59 +01:00
|
|
|
if ( head )
|
|
|
|
head.removeChild( script );
|
2007-09-04 01:45:14 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( s.dataType == "script" && s.cache == null )
|
|
|
|
s.cache = false;
|
|
|
|
|
2008-05-15 16:16:19 +02:00
|
|
|
if ( s.cache === false && type == "GET" ) {
|
2008-04-30 01:34:50 +02:00
|
|
|
var ts = now();
|
2007-12-04 05:43:45 +01:00
|
|
|
// try replacing _= if it is there
|
2007-12-04 08:36:03 +01:00
|
|
|
var ret = s.url.replace(/(\?|&)_=.*?(&|$)/, "$1_=" + ts + "$2");
|
2007-12-04 05:43:45 +01:00
|
|
|
// if nothing was replaced, add timestamp to the end
|
2009-07-19 15:21:51 +02:00
|
|
|
s.url = ret + ((ret == s.url) ? (/\?/.test(s.url) ? "&" : "?") + "_=" + ts : "");
|
2007-12-04 05:43:45 +01:00
|
|
|
}
|
2007-09-04 01:45:14 +02:00
|
|
|
|
|
|
|
// If data is available, append data to url for get requests
|
2008-05-15 16:16:19 +02:00
|
|
|
if ( s.data && type == "GET" ) {
|
2009-07-19 15:21:51 +02:00
|
|
|
s.url += (/\?/.test(s.url) ? "&" : "?") + s.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
|
|
|
// 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
|
|
|
|
2008-05-13 21:58:00 +02:00
|
|
|
// Matches an absolute URL, and saves the domain
|
2008-06-17 22:32:15 +02:00
|
|
|
var parts = /^(\w+:)?\/\/([^\/?#]+)/.exec( s.url );
|
2008-05-13 21:58:00 +02:00
|
|
|
|
2007-09-04 01:45:14 +02:00
|
|
|
// If we're requesting a remote document
|
2007-12-11 21:16:19 +01:00
|
|
|
// and trying to load JSON or Script with a GET
|
2008-06-17 22:32:15 +02:00
|
|
|
if ( s.dataType == "script" && type == "GET" && parts
|
|
|
|
&& ( parts[1] && parts[1] != location.protocol || parts[2] != location.host )){
|
|
|
|
|
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;
|
2007-12-16 00:30:34 +01:00
|
|
|
if (s.scriptCharset)
|
|
|
|
script.charset = s.scriptCharset;
|
2007-09-04 01:45:14 +02:00
|
|
|
|
|
|
|
// 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(){
|
2008-05-13 03:45:58 +02:00
|
|
|
if ( !done && (!this.readyState ||
|
2007-09-04 01:45:14 +02:00
|
|
|
this.readyState == "loaded" || this.readyState == "complete") ) {
|
|
|
|
done = true;
|
|
|
|
success();
|
|
|
|
complete();
|
2009-02-07 17:57:59 +01:00
|
|
|
|
|
|
|
// Handle memory leak in IE
|
|
|
|
script.onload = script.onreadystatechange = null;
|
2007-09-09 20:09:27 +02:00
|
|
|
head.removeChild( script );
|
2007-09-04 01:45:14 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2009-03-27 19:20:57 +01:00
|
|
|
// Use insertBefore instead of appendChild to circumvent an IE6 bug.
|
|
|
|
// This arises when a base node is used (#2709 and #4378).
|
|
|
|
head.insertBefore( script, head.firstChild );
|
2007-09-04 01:45:14 +02:00
|
|
|
|
|
|
|
// We handle everything using the script element injection
|
2007-12-16 02:03:50 +01:00
|
|
|
return undefined;
|
2007-09-04 01:45:14 +02:00
|
|
|
}
|
|
|
|
|
2006-08-22 09:32:25 +02:00
|
|
|
var requestDone = false;
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2008-08-04 16:18:06 +02:00
|
|
|
// Create the request object
|
2008-08-07 15:07:21 +02:00
|
|
|
var xhr = s.xhr();
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
// Open the socket
|
2008-05-15 15:45:09 +02:00
|
|
|
// Passing null username, generates a login popup on Opera (#2865)
|
|
|
|
if( s.username )
|
2008-05-15 23:03:31 +02:00
|
|
|
xhr.open(type, s.url, s.async, s.username, s.password);
|
2008-05-15 15:45:09 +02:00
|
|
|
else
|
2008-05-15 23:03:31 +02:00
|
|
|
xhr.open(type, s.url, s.async);
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2007-12-14 03:04:00 +01:00
|
|
|
// Need an extra try/catch for cross domain requests in Firefox 3
|
|
|
|
try {
|
|
|
|
// Set the correct header, if data is being sent
|
|
|
|
if ( s.data )
|
2008-05-15 23:03:31 +02:00
|
|
|
xhr.setRequestHeader("Content-Type", s.contentType);
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2009-06-15 15:36:12 +02:00
|
|
|
// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
|
|
|
|
if ( s.ifModified ) {
|
|
|
|
if (jQuery.lastModified[s.url])
|
|
|
|
xhr.setRequestHeader("If-Modified-Since", jQuery.lastModified[s.url]);
|
|
|
|
if (jQuery.etag[s.url])
|
|
|
|
xhr.setRequestHeader("If-None-Match", jQuery.etag[s.url]);
|
|
|
|
}
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2007-12-14 03:04:00 +01:00
|
|
|
// Set header so the called script knows that it's an XMLHttpRequest
|
2008-05-15 23:03:31 +02:00
|
|
|
xhr.setRequestHeader("X-Requested-With", "XMLHttpRequest");
|
2008-01-14 19:19:28 +01:00
|
|
|
|
|
|
|
// Set the Accepts header for the server, depending on the dataType
|
2008-05-15 23:03:31 +02:00
|
|
|
xhr.setRequestHeader("Accept", s.dataType && s.accepts[ s.dataType ] ?
|
2008-01-14 19:19:28 +01:00
|
|
|
s.accepts[ s.dataType ] + ", */*" :
|
2008-01-14 20:37:31 +01:00
|
|
|
s.accepts._default );
|
2007-12-14 03:04:00 +01:00
|
|
|
} catch(e){}
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2008-11-14 05:16:00 +01:00
|
|
|
// Allow custom headers/mimetypes and early abort
|
2008-05-15 23:03:31 +02:00
|
|
|
if ( s.beforeSend && s.beforeSend(xhr, s) === false ) {
|
2008-11-14 05:16:00 +01:00
|
|
|
// Handle the global AJAX counter
|
|
|
|
if ( s.global && ! --jQuery.active )
|
|
|
|
jQuery.event.trigger( "ajaxStop" );
|
2008-04-23 00:18:11 +02:00
|
|
|
// close opended socket
|
2008-05-15 23:03:31 +02:00
|
|
|
xhr.abort();
|
2008-04-23 00:07:17 +02:00
|
|
|
return false;
|
2008-04-23 00:18:11 +02:00
|
|
|
}
|
2008-05-13 03:45:58 +02:00
|
|
|
|
2007-01-06 07:18:02 +01:00
|
|
|
if ( s.global )
|
2008-05-15 23:03:31 +02:00
|
|
|
jQuery.event.trigger("ajaxSend", [xhr, 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){
|
2008-11-14 05:16:00 +01:00
|
|
|
// The request was aborted, clear the interval and decrement jQuery.active
|
|
|
|
if (xhr.readyState == 0) {
|
|
|
|
if (ival) {
|
|
|
|
// clear poll interval
|
|
|
|
clearInterval(ival);
|
|
|
|
ival = null;
|
|
|
|
// Handle the global AJAX counter
|
|
|
|
if ( s.global && ! --jQuery.active )
|
|
|
|
jQuery.event.trigger( "ajaxStop" );
|
|
|
|
}
|
2006-08-17 06:18:32 +02:00
|
|
|
// The transfer is complete and the data is available, or the request timed out
|
2008-11-14 05:16:00 +01:00
|
|
|
} else if ( !requestDone && xhr && (xhr.readyState == 4 || isTimeout == "timeout") ) {
|
2006-08-22 09:32:25 +02:00
|
|
|
requestDone = true;
|
2008-05-13 03:45:58 +02:00
|
|
|
|
2007-02-22 21:37:37 +01:00
|
|
|
// clear poll interval
|
|
|
|
if (ival) {
|
|
|
|
clearInterval(ival);
|
|
|
|
ival = null;
|
|
|
|
}
|
2008-05-13 03:45:58 +02:00
|
|
|
|
2008-05-25 05:20:13 +02:00
|
|
|
status = isTimeout == "timeout" ? "timeout" :
|
|
|
|
!jQuery.httpSuccess( xhr ) ? "error" :
|
|
|
|
s.ifModified && jQuery.httpNotModified( xhr, s.url ) ? "notmodified" :
|
2007-08-19 02:48:53 +02:00
|
|
|
"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)
|
2008-06-05 22:00:50 +02:00
|
|
|
data = jQuery.httpData( xhr, s.dataType, s );
|
2007-08-19 02:48:53 +02:00
|
|
|
} catch(e) {
|
|
|
|
status = "parsererror";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure that the request was successful or notmodified
|
2009-06-15 15:36:12 +02:00
|
|
|
if ( status == "success" || status == "notmodified" ) {
|
2007-09-04 01:45:14 +02:00
|
|
|
// JSONP handles its own success callback
|
|
|
|
if ( !jsonp )
|
2008-05-13 03:45:58 +02:00
|
|
|
success();
|
2007-08-19 02:48:53 +02:00
|
|
|
} else
|
2008-05-15 23:03:31 +02:00
|
|
|
jQuery.handleError(s, xhr, 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
|
|
|
|
2009-01-21 22:46:53 +01:00
|
|
|
if ( isTimeout )
|
|
|
|
xhr.abort();
|
|
|
|
|
2006-07-17 06:57:07 +02:00
|
|
|
// Stop memory leaks
|
2007-09-04 01:45:14 +02:00
|
|
|
if ( s.async )
|
2008-05-15 23:03:31 +02:00
|
|
|
xhr = null;
|
2006-06-19 03:29:54 +02:00
|
|
|
}
|
2006-07-17 06:57:07 +02:00
|
|
|
};
|
2008-05-13 03:45:58 +02:00
|
|
|
|
2007-08-20 01:37:26 +02:00
|
|
|
if ( s.async ) {
|
|
|
|
// don't attach the handler to the request, just poll it instead
|
2008-05-13 03:45:58 +02:00
|
|
|
var ival = setInterval(onreadystatechange, 13);
|
2007-08-20 01:37:26 +02:00
|
|
|
|
|
|
|
// Timeout checker
|
|
|
|
if ( s.timeout > 0 )
|
|
|
|
setTimeout(function(){
|
|
|
|
// Check to see if the request is still happening
|
2009-01-21 22:46:53 +01:00
|
|
|
if ( xhr && !requestDone )
|
|
|
|
onreadystatechange( "timeout" );
|
2007-08-20 01:37:26 +02:00
|
|
|
}, s.timeout);
|
|
|
|
}
|
2008-05-13 03:45:58 +02:00
|
|
|
|
2006-07-10 05:20:56 +02:00
|
|
|
// Send the data
|
2006-12-21 14:35:32 +01:00
|
|
|
try {
|
2009-05-16 22:23:58 +02:00
|
|
|
xhr.send( type === "POST" ? s.data : null );
|
2006-12-21 14:35:32 +01:00
|
|
|
} catch(e) {
|
2008-05-15 23:03:31 +02:00
|
|
|
jQuery.handleError(s, xhr, null, e);
|
2006-12-21 14:35:32 +01:00
|
|
|
}
|
2008-05-13 03:45:58 +02: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();
|
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 )
|
2008-05-15 23:03:31 +02:00
|
|
|
jQuery.event.trigger( "ajaxSuccess", [xhr, s] );
|
2007-09-04 01:45:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function complete(){
|
|
|
|
// Process result
|
|
|
|
if ( s.complete )
|
2008-05-15 23:03:31 +02:00
|
|
|
s.complete(xhr, status);
|
2007-09-04 01:45:14 +02:00
|
|
|
|
|
|
|
// The request was completed
|
|
|
|
if ( s.global )
|
2008-05-15 23:03:31 +02:00
|
|
|
jQuery.event.trigger( "ajaxComplete", [xhr, s] );
|
2007-09-04 01:45:14 +02:00
|
|
|
|
|
|
|
// Handle the global AJAX counter
|
|
|
|
if ( s.global && ! --jQuery.active )
|
|
|
|
jQuery.event.trigger( "ajaxStop" );
|
|
|
|
}
|
2008-05-13 03:45:58 +02:00
|
|
|
|
2007-12-16 02:03:50 +01:00
|
|
|
// return XMLHttpRequest to allow aborting the request etc.
|
2008-05-15 23:03:31 +02:00
|
|
|
return xhr;
|
2006-07-10 05:20:56 +02:00
|
|
|
},
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2008-05-15 23:03:31 +02:00
|
|
|
handleError: function( s, xhr, status, e ) {
|
2006-12-21 14:35:32 +01:00
|
|
|
// If a local callback was specified, fire it
|
2008-05-15 23:03:31 +02:00
|
|
|
if ( s.error ) s.error( xhr, status, e );
|
2006-12-21 14:35:32 +01:00
|
|
|
|
|
|
|
// Fire the global callback
|
2007-01-06 07:18:02 +01:00
|
|
|
if ( s.global )
|
2008-05-15 23:03:31 +02:00
|
|
|
jQuery.event.trigger( "ajaxError", [xhr, s, e] );
|
2006-12-21 14:35:32 +01:00
|
|
|
},
|
|
|
|
|
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
|
2008-05-15 23:03:31 +02:00
|
|
|
httpSuccess: function( xhr ) {
|
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
|
2008-05-15 23:03:31 +02:00
|
|
|
return !xhr.status && location.protocol == "file:" ||
|
2009-07-14 23:13:23 +02:00
|
|
|
// Opera returns 0 when status is 304
|
|
|
|
( xhr.status >= 200 && xhr.status < 300 ) || xhr.status == 304 || xhr.status == 1223 || xhr.status == 0;
|
2006-12-21 16:23:59 +01:00
|
|
|
} catch(e){}
|
|
|
|
return false;
|
2006-08-17 06:18:32 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
// Determines if an XMLHttpRequest returns NotModified
|
2008-05-15 23:03:31 +02:00
|
|
|
httpNotModified: function( xhr, url ) {
|
2009-06-15 15:36:12 +02:00
|
|
|
var last_modified = xhr.getResponseHeader("Last-Modified");
|
|
|
|
var etag = xhr.getResponseHeader("Etag");
|
2006-08-17 06:18:32 +02:00
|
|
|
|
2009-06-15 15:36:12 +02:00
|
|
|
if (last_modified)
|
|
|
|
jQuery.lastModified[url] = last_modified;
|
|
|
|
|
|
|
|
if (etag)
|
|
|
|
jQuery.etag[url] = etag;
|
|
|
|
|
2009-07-14 23:13:23 +02:00
|
|
|
// Opera returns 0 when status is 304
|
|
|
|
return xhr.status == 304 || xhr.status == 0;
|
2006-07-10 05:20:56 +02:00
|
|
|
},
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2008-06-05 22:00:50 +02:00
|
|
|
httpData: function( xhr, type, s ) {
|
2008-05-15 23:03:31 +02:00
|
|
|
var ct = xhr.getResponseHeader("content-type"),
|
2008-04-30 01:34:50 +02:00
|
|
|
xml = type == "xml" || !type && ct && ct.indexOf("xml") >= 0,
|
2008-05-15 23:03:31 +02:00
|
|
|
data = xml ? xhr.responseXML : xhr.responseText;
|
2007-07-21 02:52:30 +02:00
|
|
|
|
2009-07-19 15:32:53 +02:00
|
|
|
if ( xml && data.documentElement.nodeName == "parsererror" ) {
|
2007-07-21 02:52:30 +02:00
|
|
|
throw "parsererror";
|
2009-05-20 23:28:48 +02:00
|
|
|
}
|
2009-03-23 02:55:17 +01:00
|
|
|
|
2008-05-16 18:39:27 +02:00
|
|
|
// Allow a pre-filtering function to sanitize the response
|
2008-06-17 23:31:57 +02:00
|
|
|
// s != null is checked to keep backwards compatibility
|
2009-05-20 23:28:48 +02:00
|
|
|
if ( s && s.dataFilter ) {
|
2008-06-05 22:00:50 +02:00
|
|
|
data = s.dataFilter( data, type );
|
2009-05-20 23:28:48 +02:00
|
|
|
}
|
2006-08-17 06:18:32 +02:00
|
|
|
|
2008-08-07 22:41:05 +02:00
|
|
|
// The filter can actually parse the response
|
2009-05-20 23:28:48 +02:00
|
|
|
if ( typeof data === "string" ) {
|
2006-08-17 06:18:32 +02:00
|
|
|
|
2008-08-07 22:41:05 +02:00
|
|
|
// If the type is "script", eval it in global context
|
2009-05-20 23:28:48 +02:00
|
|
|
if ( type === "script" ) {
|
2008-08-07 22:41:05 +02:00
|
|
|
jQuery.globalEval( data );
|
2009-05-20 23:28:48 +02:00
|
|
|
}
|
2006-11-04 22:09:05 +01:00
|
|
|
|
2008-08-07 22:41:05 +02:00
|
|
|
// Get the JavaScript object, if JSON is used.
|
2009-05-20 23:28:48 +02:00
|
|
|
if ( type == "json" ) {
|
|
|
|
if ( typeof JSON === "object" && JSON.parse ) {
|
|
|
|
data = JSON.parse( data );
|
|
|
|
} else {
|
|
|
|
data = (new Function("return " + data))();
|
|
|
|
}
|
|
|
|
}
|
2008-08-07 22:41:05 +02:00
|
|
|
}
|
2009-03-23 02:55:17 +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 ) {
|
2008-05-28 04:50:38 +02:00
|
|
|
var s = [ ];
|
|
|
|
|
|
|
|
function add( key, value ){
|
|
|
|
s[ s.length ] = encodeURIComponent(key) + '=' + encodeURIComponent(value);
|
|
|
|
};
|
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
|
2008-10-29 03:01:22 +01:00
|
|
|
if ( jQuery.isArray(a) || 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(){
|
2008-05-28 04:50:38 +02:00
|
|
|
add( this.name, this.value );
|
2007-01-14 22:49:59 +01:00
|
|
|
});
|
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
|
2008-10-29 03:01:22 +01:00
|
|
|
if ( jQuery.isArray(a[j]) )
|
2007-01-14 22:49:59 +01:00
|
|
|
jQuery.each( a[j], function(){
|
2008-05-28 04:50:38 +02:00
|
|
|
add( j, this );
|
2007-01-14 22:49:59 +01:00
|
|
|
});
|
2007-01-06 07:18:02 +01:00
|
|
|
else
|
2008-05-28 04:50:38 +02:00
|
|
|
add( j, jQuery.isFunction(a[j]) ? a[j]() : 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
|
|
|
}
|
|
|
|
|
|
|
|
});
|