Plugins

User login
Can't find a Plugin?

Can't find a Plugin you are looking for? Check out the jQuery Wiki page.

Are you a plugin developer? Please move your plugin over to this site.

Website Bug or Feature Request?

Found a bug on the new jQuery Plugin website? Have a feature request?

Submit it to the jQuery Plugin website issue queue to ensure it is noticed!

asmx


Ajax Dot Net

Average rating
(3 votes)

I've moved the project to Google Code, all future releases will be posted there. http://code.google.com/p/ajaxdotnet/

.

Provides a function which allows GET and POST requests to ASP.NET Ajax enabled PageMethods and Web Services. The function only supports JSON requests and requires JSON2.js from json.org

.

ajaxDotNet supports global and per call event handlers. Global event handlers fire regardless of the individual call. Per call event handlers can be set on the actual call or through the defaults function. event handlers set on the call override handlers set through the defaults function.

Usage Example:

$.ajaxDotNet.globals({
processData: function(r) {
//Do Stuff
return r;
}
});

$.ajaxDotNet.defaults({
error: function(r) {
//Do Error
}
});

$.ajaxDotNet('WebService.asmx/Method', {
verb: 'POST',
data: {id: 1},
success: function(obj) {