<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/language/javascript/tags/ajax</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Fri, 29 Aug 2008 18:41:55 GMT</pubDate>
<item>
<title>(JavaScript) submitEvents - Javascript form submission handler - dom111</title>
<link>http://snipplr.com/view/7865/submitevents--javascript-form-submission-handler/</link>
<description><![CDATA[ <p>Requires Mootools 1.2
http://mootools.net/download

Based on the mootools javascript framework a re-usable class for easily implementing an array of on submit events.

* Confirmation - Provides an Ok, Cancel input box before proceeding further
* Submit Button - Disable and change the text on a submit button
* Information Div - Display a div that lets the user know something is happening
* Undo - Undo the changes (re-enable a previously disabled submit button, change the information div) that have been carried out by the class
* AJAX - Submit the form using AJAX instead of the ‘old fashioned’ way

This work is released under the creative commons share alike license.

Requires Mootools 1.2
http://mootools.net/download</p> ]]></description>
<pubDate>Wed, 13 Aug 2008 21:10:57 GMT</pubDate>
<guid>http://snipplr.com/view/7865/submitevents--javascript-form-submission-handler/</guid>
</item>
<item>
<title>(JavaScript) Create XMLHttpRequest - KernelPanic</title>
<link>http://snipplr.com/view/7361/create-xmlhttprequest/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 17 Jul 2008 10:51:18 GMT</pubDate>
<guid>http://snipplr.com/view/7361/create-xmlhttprequest/</guid>
</item>
<item>
<title>(JavaScript) Google AJAX API Language e Prototype.js - gfazioli</title>
<link>http://snipplr.com/view/7224/google-ajax-api-language-e-prototypejs/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 11 Jul 2008 04:56:43 GMT</pubDate>
<guid>http://snipplr.com/view/7224/google-ajax-api-language-e-prototypejs/</guid>
</item>
<item>
<title>(JavaScript) jQuery AJAX navigation - iTony</title>
<link>http://snipplr.com/view/6455/jquery-ajax-navigation/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 26 May 2008 01:52:42 GMT</pubDate>
<guid>http://snipplr.com/view/6455/jquery-ajax-navigation/</guid>
</item>
<item>
<title>(JavaScript) bind jquery events to ajax'd content with livequery - kristin</title>
<link>http://snipplr.com/view/4696/bind-jquery-events-to-ajaxd-content-with-livequery/</link>
<description><![CDATA[ <p>#modal would be the bodyID of your modal window.  I use jqmodal so it strips out all the header tags, and takes your body ID and turns it into a div.</p> ]]></description>
<pubDate>Sun, 20 Jan 2008 23:45:56 GMT</pubDate>
<guid>http://snipplr.com/view/4696/bind-jquery-events-to-ajaxd-content-with-livequery/</guid>
</item>
<item>
<title>(JavaScript) Paginación de tablas - victorchamorro</title>
<link>http://snipplr.com/view/4197/paginacin-de-tablas/</link>
<description><![CDATA[ <p>libreria que mediante ajax y javascript permite paginar los contenidos de una tabla</p> ]]></description>
<pubDate>Tue, 27 Nov 2007 07:49:22 GMT</pubDate>
<guid>http://snipplr.com/view/4197/paginacin-de-tablas/</guid>
</item>
<item>
<title>(JavaScript) Select ajax DOM Fill - miziomon</title>
<link>http://snipplr.com/view/4125/select-ajax-dom-fill/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Tue, 13 Nov 2007 05:57:58 GMT</pubDate>
<guid>http://snipplr.com/view/4125/select-ajax-dom-fill/</guid>
</item>
<item>
<title>(JavaScript) Prototype Ajax Request - tjhanley</title>
<link>http://snipplr.com/view/3563/prototype-ajax-request/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 23 Aug 2007 14:26:58 GMT</pubDate>
<guid>http://snipplr.com/view/3563/prototype-ajax-request/</guid>
</item>
<item>
<title>(JavaScript) Simple XMLHTTP Interface - damarev</title>
<link>http://snipplr.com/view/3511/simple-xmlhttp-interface/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 13 Aug 2007 02:28:20 GMT</pubDate>
<guid>http://snipplr.com/view/3511/simple-xmlhttp-interface/</guid>
</item>
<item>
<title>(JavaScript) Pull in Info from a HTML File using innerHTML - 1man</title>
<link>http://snipplr.com/view/2331/pull-in-info-from-a-html-file-using-innerhtml/</link>
<description><![CDATA[ <p>Simply replaces the div's innerHTML with the response text received from the file.</p> ]]></description>
<pubDate>Wed, 14 Mar 2007 09:32:50 GMT</pubDate>
<guid>http://snipplr.com/view/2331/pull-in-info-from-a-html-file-using-innerhtml/</guid>
</item>
<item>
<title>(JavaScript) Ajax Insert Dynamic "script" into "head" - 1man</title>
<link>http://snipplr.com/view/2325/ajax-insert-dynamic-script-into-head/</link>
<description><![CDATA[ <p>Part of the script tag hack. Allows you to create a script tag on the fly from a url. The url could be a file containing info such as JSON or XML. Used in Ajax for crossing domains.</p> ]]></description>
<pubDate>Wed, 14 Mar 2007 04:44:00 GMT</pubDate>
<guid>http://snipplr.com/view/2325/ajax-insert-dynamic-script-into-head/</guid>
</item>
<item>
<title>(JavaScript) Ajax Parsing XML Data - 1man</title>
<link>http://snipplr.com/view/2316/ajax-parsing-xml-data/</link>
<description><![CDATA[ <p>This function allows you to parse a simple XML document(passed to it using this.href on a onclick event). Virtually the same as JSON, the things that have been changed ate labeled !Important.</p> ]]></description>
<pubDate>Tue, 13 Mar 2007 09:54:15 GMT</pubDate>
<guid>http://snipplr.com/view/2316/ajax-parsing-xml-data/</guid>
</item>
<item>
<title>(JavaScript) Ajax Parsing JSON Data - 1man</title>
<link>http://snipplr.com/view/2315/ajax-parsing-json-data/</link>
<description><![CDATA[ <p>This function is near enough the same as parsing XML. The only things that have changed are the sections marked !important.</p> ]]></description>
<pubDate>Tue, 13 Mar 2007 09:47:32 GMT</pubDate>
<guid>http://snipplr.com/view/2315/ajax-parsing-json-data/</guid>
</item>
<item>
<title>(JavaScript) Grab Text from a File Ajax - 1man</title>
<link>http://snipplr.com/view/2311/grab-text-from-a-file-ajax/</link>
<description><![CDATA[ <p>Very basic grab a line of text from a file then display it in an alert box. Uses other functions for loading prepareLinks() and creating the request.</p> ]]></description>
<pubDate>Tue, 13 Mar 2007 05:14:55 GMT</pubDate>
<guid>http://snipplr.com/view/2311/grab-text-from-a-file-ajax/</guid>
</item>
<item>
<title>(JavaScript) Ajax Post Request - 1man</title>
<link>http://snipplr.com/view/2304/ajax-post-request/</link>
<description><![CDATA[ <p>Simple Ajax POST request using the getHTTPObject function.</p> ]]></description>
<pubDate>Mon, 12 Mar 2007 09:41:25 GMT</pubDate>
<guid>http://snipplr.com/view/2304/ajax-post-request/</guid>
</item>
<item>
<title>(JavaScript) Ajax GET Request - 1man</title>
<link>http://snipplr.com/view/2303/ajax-get-request/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Mon, 12 Mar 2007 09:37:00 GMT</pubDate>
<guid>http://snipplr.com/view/2303/ajax-get-request/</guid>
</item>
<item>
<title>(JavaScript) Ajax getHTTPObject function - 1man</title>
<link>http://snipplr.com/view/2300/ajax-gethttpobject-function/</link>
<description><![CDATA[ <p>This functions allows you to create a new XMLHTTPRequest, it checks to see if the browser supports each method, if not it returns false.</p> ]]></description>
<pubDate>Mon, 12 Mar 2007 05:37:54 GMT</pubDate>
<guid>http://snipplr.com/view/2300/ajax-gethttpobject-function/</guid>
</item>
<item>
<title>(JavaScript) Ajax の初歩 - jugyo</title>
<link>http://snipplr.com/view/1807/ajax-/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 16 Dec 2006 19:29:32 GMT</pubDate>
<guid>http://snipplr.com/view/1807/ajax-/</guid>
</item>
<item>
<title>(JavaScript) Javascript HTTP Request v1.0 - elightbo</title>
<link>http://snipplr.com/view/1562/javascript-http-request-v10/</link>
<description><![CDATA[ <p>Class to make remote requests, which can be used on the popular "AJAX".</p> ]]></description>
<pubDate>Thu, 09 Nov 2006 09:01:05 GMT</pubDate>
<guid>http://snipplr.com/view/1562/javascript-http-request-v10/</guid>
</item>
<item>
<title>(JavaScript) jQuery/Ajax - How to generate a valid POST hash? - gaunab</title>
<link>http://snipplr.com/view/1533/jqueryajax--how-to-generate-a-valid-post-hash/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 03 Nov 2006 08:31:21 GMT</pubDate>
<guid>http://snipplr.com/view/1533/jqueryajax--how-to-generate-a-valid-post-hash/</guid>
</item>
</channel>
</rss>