<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: How to Make AJAX Requests With Raw Javascript</title>
	<atom:link href="http://net.tutsplus.com/videos/screencasts/how-to-make-ajax-requests-with-raw-javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://net.tutsplus.com/videos/screencasts/how-to-make-ajax-requests-with-raw-javascript/</link>
	<description>Web Development &#38; Design Tutorials</description>
	<lastBuildDate>Sat, 21 Nov 2009 22:51:56 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: flash</title>
		<link>http://net.tutsplus.com/videos/screencasts/how-to-make-ajax-requests-with-raw-javascript/#comment-124677</link>
		<dc:creator>flash</dc:creator>
		<pubDate>Wed, 28 Oct 2009 12:32:57 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=4855#comment-124677</guid>
		<description>love the way you call extra coding space &quot;Real Estate&quot; lol

Great tut as usual.</description>
		<content:encoded><![CDATA[<p>love the way you call extra coding space &#8220;Real Estate&#8221; lol</p>
<p>Great tut as usual.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aleko</title>
		<link>http://net.tutsplus.com/videos/screencasts/how-to-make-ajax-requests-with-raw-javascript/#comment-111088</link>
		<dc:creator>aleko</dc:creator>
		<pubDate>Thu, 24 Sep 2009 16:33:51 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=4855#comment-111088</guid>
		<description>it doesn&#039;t work well in IE7</description>
		<content:encoded><![CDATA[<p>it doesn&#8217;t work well in IE7</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kaam</title>
		<link>http://net.tutsplus.com/videos/screencasts/how-to-make-ajax-requests-with-raw-javascript/#comment-70053</link>
		<dc:creator>kaam</dc:creator>
		<pubDate>Sun, 07 Jun 2009 13:14:59 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=4855#comment-70053</guid>
		<description>can you please tell me, how can I submit a form using ajax, where the form is in a page fetched by ajax ? Can you give a link to a full Demo??????

Thanks.</description>
		<content:encoded><![CDATA[<p>can you please tell me, how can I submit a form using ajax, where the form is in a page fetched by ajax ? Can you give a link to a full Demo??????</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FreewareMatter</title>
		<link>http://net.tutsplus.com/videos/screencasts/how-to-make-ajax-requests-with-raw-javascript/#comment-69059</link>
		<dc:creator>FreewareMatter</dc:creator>
		<pubDate>Tue, 02 Jun 2009 21:58:14 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=4855#comment-69059</guid>
		<description>Thank you very much for this code. It&#039;s so clear. I saw some ajax code, but they&#039;re not as good as this. And the explaination is excellent. Thanks again.</description>
		<content:encoded><![CDATA[<p>Thank you very much for this code. It&#8217;s so clear. I saw some ajax code, but they&#8217;re not as good as this. And the explaination is excellent. Thanks again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: juanito</title>
		<link>http://net.tutsplus.com/videos/screencasts/how-to-make-ajax-requests-with-raw-javascript/#comment-67910</link>
		<dc:creator>juanito</dc:creator>
		<pubDate>Thu, 28 May 2009 08:02:05 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=4855#comment-67910</guid>
		<description>hello everybody.I can&#039;t watch the video. My location:China. or can you tell me a way to download?</description>
		<content:encoded><![CDATA[<p>hello everybody.I can&#8217;t watch the video. My location:China. or can you tell me a way to download?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: adormitu</title>
		<link>http://net.tutsplus.com/videos/screencasts/how-to-make-ajax-requests-with-raw-javascript/#comment-67080</link>
		<dc:creator>adormitu</dc:creator>
		<pubDate>Sun, 24 May 2009 18:35:47 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=4855#comment-67080</guid>
		<description>there is a minor mistake in the &quot;XMLHttpRequest and ActiveXObject &quot; part of the tutorial.

you used (in the for loop):

#             xhr = new ActiveXObject(versions[i]);  
#             break;

which will break the for loop after the first iteration, no questions asked. Instead the whole for loop should have been written like:

#    for(var i = 0, len = versions.length; i &lt; len; i++) {
#        try {
#            xhr = new ActiveXObject(versions[i]);
#        }
#        catch (e) { continue; }
#        break;
#    } 

this way any time the object isn&#039;t instantiated il will jump back to the &lt;strong&gt;try&lt;/strong&gt; part in the for, else it will reach the &lt;strong&gt;break&lt;/strong&gt; statement, meaning it succeeded in instantiating the object.</description>
		<content:encoded><![CDATA[<p>there is a minor mistake in the &#8220;XMLHttpRequest and ActiveXObject &#8221; part of the tutorial.</p>
<p>you used (in the for loop):</p>
<p>#             xhr = new ActiveXObject(versions[i]);<br />
#             break;</p>
<p>which will break the for loop after the first iteration, no questions asked. Instead the whole for loop should have been written like:</p>
<p>#    for(var i = 0, len = versions.length; i &lt; len; i++) {<br />
#        try {<br />
#            xhr = new ActiveXObject(versions[i]);<br />
#        }<br />
#        catch (e) { continue; }<br />
#        break;<br />
#    } </p>
<p>this way any time the object isn&#8217;t instantiated il will jump back to the <strong>try</strong> part in the for, else it will reach the <strong>break</strong> statement, meaning it succeeded in instantiating the object.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Web010</title>
		<link>http://net.tutsplus.com/videos/screencasts/how-to-make-ajax-requests-with-raw-javascript/#comment-65291</link>
		<dc:creator>Web010</dc:creator>
		<pubDate>Sun, 17 May 2009 18:22:09 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=4855#comment-65291</guid>
		<description>I completely agree with you.
If the company wants to stay in middle age, you don&#039;t have too. Start freelancing.
I am a freelancer, and the best experience was with GAF.</description>
		<content:encoded><![CDATA[<p>I completely agree with you.<br />
If the company wants to stay in middle age, you don&#8217;t have too. Start freelancing.<br />
I am a freelancer, and the best experience was with GAF.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AJAX</title>
		<link>http://net.tutsplus.com/videos/screencasts/how-to-make-ajax-requests-with-raw-javascript/#comment-64852</link>
		<dc:creator>AJAX</dc:creator>
		<pubDate>Sat, 16 May 2009 00:59:50 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=4855#comment-64852</guid>
		<description>Agreed, why complicate things? AJAX is JavaScript.</description>
		<content:encoded><![CDATA[<p>Agreed, why complicate things? AJAX is JavaScript.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremy</title>
		<link>http://net.tutsplus.com/videos/screencasts/how-to-make-ajax-requests-with-raw-javascript/#comment-64007</link>
		<dc:creator>Jeremy</dc:creator>
		<pubDate>Wed, 13 May 2009 14:47:24 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=4855#comment-64007</guid>
		<description>Knowledge &gt; frameworks</description>
		<content:encoded><![CDATA[<p>Knowledge &gt; frameworks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://net.tutsplus.com/videos/screencasts/how-to-make-ajax-requests-with-raw-javascript/#comment-63922</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Wed, 13 May 2009 06:24:41 +0000</pubDate>
		<guid isPermaLink="false">http://net.tutsplus.com/?p=4855#comment-63922</guid>
		<description>Great tut! While javascript libraries definitely have their place, they&#039;re not always the best solution. One good situation to use plain javascript is when writing code that will be used by someone else, such as a Wordpress plugin. Preferably a plugin should not force someone to load an extra library  (it could create conflicts with a library already in use on their site).</description>
		<content:encoded><![CDATA[<p>Great tut! While javascript libraries definitely have their place, they&#8217;re not always the best solution. One good situation to use plain javascript is when writing code that will be used by someone else, such as a Wordpress plugin. Preferably a plugin should not force someone to load an extra library  (it could create conflicts with a library already in use on their site).</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!--
This site's performance optimized by W3 Total Cache:

W3 Total Cache improves the user experience of your blog by caching
frequent operations, reducing the weight of various files and providing
transparent content delivery network integration.

Learn more about our WordPress Plugins: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 2/7 queries in 0.008 seconds using memcached
Content Delivery Network via 

Served from: psdtutsplus.com @ 2009-11-21 16:12:50 -->