<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Mike Willbanks &#187; Javascript</title>
	<atom:link href="http://blog.digitalstruct.com/category/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.digitalstruct.com</link>
	<description>Getting inside the mind of a php developer.</description>
	<lastBuildDate>Tue, 13 Jul 2010 13:42:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>AJAX Toolbox</title>
		<link>http://blog.digitalstruct.com/2005/08/08/ajax-toolbox/</link>
		<comments>http://blog.digitalstruct.com/2005/08/08/ajax-toolbox/#comments</comments>
		<pubDate>Mon, 08 Aug 2005 18:57:55 +0000</pubDate>
		<dc:creator>Mike Willbanks</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://blog.digitalstruct.com/?p=2</guid>
		<description><![CDATA[In the mist of starting to write our own Javascript AJAX library to be more functional than the others ones out in the wild, I stumbled upon a really nice AJAX library that already implemented in the way I was thinking to (well not exactly but really close). This one utilizes javascript objects and simply [...]]]></description>
			<content:encoded><![CDATA[<p>In the mist of starting to write our own Javascript AJAX library to be more functional than the others ones out in the wild, I stumbled upon a really nice AJAX library that already implemented in the way I was thinking to (well not exactly but really close).</p>
<p>This one utilizes javascript objects and simply sends the request.  It is your job to write the return function(s).  The library is very well thought out and brought into a very nice functioning library (sorry to say but more functional that my v1 was going to be)!</p>
<p>Here is an example of how they run the process:<br />
<code>AjaxRequest.get(<br />
  {<br />
    'onSuccess':function(req){ document.forms[0].pageSource.value = req.responseText; }<br />
  }<br />
);</code></p>
<p>Basically what you are doing is initializing a get request and onSuccess that function is ran.  Very simple and not complex.  Most of the time implementing AJAX by using a different library may cause many faults as the complexity of the library requires building php objects or js objects for each individual item.  This I find is much easier and much easier to maintain.  It really goes to show that the KISS rule is definitely a must!</p>
<p>Go see the <a href="http://www.ajaxtoolbox.com">Ajax Toolbox</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.digitalstruct.com/2005/08/08/ajax-toolbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
