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!

xmlhttprequest


jParse

Average rating
(1 vote)

This plugin allows you to quickly and easily parse XML that has been fetched with the jQuery .ajax method. The plugin gives you custom output options, ability to limit the number of parsed, output a count of the number of in the XML and run a functions before and after parsing.

Ajax Developer Debug

Average rating
(0 votes)

:: EN ::
Ajax Developer Debug is a plugin to debug yours XMLHttpRequests.
The plugin allows that you capture all errors returned from Ajax in jQuery.
This plugin can be used in development enviroment for display erros at runtime, or to put inside your web application in a specific HTML element.
---
:: PT-Br ::
Ajax Developer Debug é um plugin para debugar requisições XMLHttpRequest.
O plugin permite que você capture todos os erros retornados pelo Ajax no jQuery.
Este plugin pode ser utilizado em um ambientente de desenvolvimento para mostar erro em tempo de execução, ou ainda inserir esses erros em um elemento HTML na sua Aplicação Web.

mPages JavaScript Library

Average rating
(1 vote)

mPages is a JavaScript Framework designed to provide a standard toolkit to simplify and streamline the development of Cerner MPages. mPages is completely encapsulated, is easily extendable with custom plugins, and its commands can be chained together to speed up development.

mPages provides:

  • A single namespace upon which to build all JavaScript functionality within MPages
  • AJAX Wrapper methods to simplify use of the XMLCclRequest object
  • Easy to use wrapper methods for APPLINK, CCLLINK and other pre-defined MPage functions
  • Run-time JSON debugging

Download Now

 

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) {