My favorites
▼
|
Sign in
flesler-plugins
My jQuery plugins and other scripts
Project Home
Downloads
Issues
Source
Checkout
|
Browse
|
Changes
|
r25
Source path:
svn
/
trunk
/
jquery.xhr
/
jquery.xhr.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*!
* jQuery.XHR
* Copyright (c) 2008 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
* Dual licensed under MIT and GPL.
* Date: 8/7/2008
*
* @projectDescription Registry of XHR implementations
*
* @author Ariel Flesler
* @version 1.0.0
*/
;(function( $ ){
var as = $.ajaxSettings;
$.xhr = {
r : {
xhr: as.xhr
},
register:function( name, fn ){
this.r[name] = fn;
}
};
// The built-in method is used by default
// To set another one as default, use $.ajaxSetup({ transport:'my_xhr' })
as.transport = 'xhr';
// This handler is used instead, don't override it
as.xhr = function(){
return $.xhr.r[ this.transport ]( this );
};
})( jQuery );
Show details
Hide details
Change log
r2
by aflesler on Jun 04, 2009
Diff
* Moving all to this repository
Go to:
/trunk/TODO.txt
/trunk/common.mak
/trunk/jquery.accessible
/trunk/jquery.accessible/README.txt
...nk/jquery.accessible/changes.txt
....accessible/jquery.accessible.js
...e/jquery.accessible.validator.js
/trunk/jquery.ajaxFilter
/trunk/jquery.ajaxFilter/README.txt
...nk/jquery.ajaxFilter/changes.txt
/trunk/jquery.ajaxFilter/demo
...ry.ajaxFilter/demo/bad_script.js
...query.ajaxFilter/demo/index.html
...axFilter/demo/jquery-1.2.7pre.js
....ajaxFilter/jquery.ajaxFilter.js
/trunk/jquery.broadcast
/trunk/jquery.broadcast/README.txt
/trunk/jquery.broadcast/changes.txt
/trunk/jquery.broadcast/demo
...jquery.broadcast/demo/index.html
...ry.broadcast/jquery.broadcast.js
/trunk/jquery.bubble
/trunk/jquery.bubble/demo
...nk/jquery.bubble/demo/index.html
...ery.bubble/jquery.bubble-sync.js
...k/jquery.bubble/jquery.bubble.js
/trunk/jquery.collection
/trunk/jquery.collection/README.txt
...nk/jquery.collection/changes.txt
/trunk/jquery.collection/demo
...query.collection/demo/index.html
....collection/jquery.collection.js
/trunk/jquery.fastTrigger
...nk/jquery.fastTrigger/README.txt
...k/jquery.fastTrigger/changes.txt
...nk/jquery.fastTrigger/console.js
/trunk/jquery.fastTrigger/demo
/trunk/jquery.fastTrigger/demo/css
...y.fastTrigger/demo/css/style.css
...uery.fastTrigger/demo/index.html
...astTrigger/jquery.fastTrigger.js
/trunk/jquery.intercept
/trunk/jquery.intercept/changes.txt
/trunk/jquery.intercept/demo
...jquery.intercept/demo/index.html
...ry.intercept/jquery.intercept.js
/trunk/jquery.listen
/trunk/jquery.listen/README.txt
/trunk/jquery.listen/changes.txt
/trunk/jquery.listen/demo
Sign in
to write a code review
Older revisions
All revisions of this file
File info
Size: 739 bytes, 34 lines
View raw file
Powered by
Google Project Hosting