xmlhttprequest
jParse
November 11, 2009 - 1:47am — kylerushThis 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
October 2, 2009 - 10:38pm — jaydson:: 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
April 25, 2009 - 5:40am — faulkjmPages 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
July 9, 2008 - 3:07pm — kim3erI'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) {
