mini AJAX
March 6, 2007 | Posted by Jeffrey Barke | 3 comments
Mini AJAX is a “handy, lightweight” set of AJAX functions recently adopted by theMechanism. While Tim Morgan’s script is well-documented and easy to plug into an existing application, we did find it a bit limiting that it only returns string data (responseText). Since we’re typically accessing XML, it would be nice to have the option of using responseXML.
So, we modified mini AJAX by adding two new methods that do just that:
ajax.getxml(strUrl, strFunc)
strUrl—the URL to query (can contain arguments after a “?”)
strFunc—the function to call once the response is returned
This method uses a GET request to query the specified URL and return a response as an XML DOM object to the specified function.
ajax.postxml(strUrl, strFunc, strArgs)
strUrl—the URL to query
strFunc—the function to call once the response is returned
strArgs—a string containing arguments to be passed to the URL
This method uses a POST request to query the specified URL and return a response as an XML DOM object to the specified function.
20070315 update—Updated mini AJAX after I discovered a function name conflict in Internet Explorer 7. This conflict only occurs if one is using mini AJAX in tandem with Prototype [which we do all the time]. For some unknown reason, this hadn’t been a problem for any of the other browsers [Safari, Firefox on Mac and Firefox, Opera on PC], but it caused the script to fail ignominiously in Internet Explorer.
The updated version of mini AJAX can be found here.
























Awesome find, deduction and modification, Sir Barke! Thanks for posting it for the planet’s coders to enjoy.
Dave Fletcher (theMechanism)
March 6th, 6:30 pm[...] The New York Web Standards Meetup Group will be meeting at theMechanism on 22 March 2007 at 6:30 pm to discuss AJAX and form handling. We plan on giving a form submission demo utilizing mini AJAX and JSON. [...]
schiller labs :: Blog Archive » the new york web standards meetup group
March 14th, 8:32 pm[...] Updated mini AJAX yesterday after I discovered a function name conflict in Internet Explorer 7. This conflict only occurs if one is using mini AJAX in tandem with Prototype [which we do all the time]. For some unknown reason, this hadn’t been a problem for any of the other browsers [Safari, Firefox on Mac and Firefox, Opera on PC], but it caused the script to fail ignominiously in Internet Explorer 7. [...]
mini AJAX version 1.1.1 | theMechanism, llc.
March 16th, 11:14 am