<?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"
	>
<channel>
	<title>Comments on: Ajax Fast and Easy - part three</title>
	<atom:link href="http://blog.webandnow.com/blog/2008/02/28/ajax-fast-and-easy-part-three/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.webandnow.com/blog/2008/02/28/ajax-fast-and-easy-part-three/</link>
	<description>think</description>
	<pubDate>Sun, 20 May 2012 18:21:51 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: webandnow</title>
		<link>http://blog.webandnow.com/blog/2008/02/28/ajax-fast-and-easy-part-three/#comment-105</link>
		<dc:creator>webandnow</dc:creator>
		<pubDate>Fri, 21 Mar 2008 15:23:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.webandnow.com/blog/2008/02/28/ajax-fast-and-easy-part-three/#comment-105</guid>
		<description>Im not sure i completely understand the question, but you can use ajax to call any number of files.
sorry, im sure that is not much help.  perhaps you could explain you question a little more for me.</description>
		<content:encoded><![CDATA[<p>Im not sure i completely understand the question, but you can use ajax to call any number of files.<br />
sorry, im sure that is not much help.  perhaps you could explain you question a little more for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://blog.webandnow.com/blog/2008/02/28/ajax-fast-and-easy-part-three/#comment-104</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Fri, 21 Mar 2008 06:47:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.webandnow.com/blog/2008/02/28/ajax-fast-and-easy-part-three/#comment-104</guid>
		<description>Thanks ,

Can ajax change contain of the third .
example : i have index.html ,prototype-1.6.0.2.js ,backendXML.xml  .
And I want to include third file who will depend on index.html  and backendXML.xml .</description>
		<content:encoded><![CDATA[<p>Thanks ,</p>
<p>Can ajax change contain of the third .<br />
example : i have index.html ,prototype-1.6.0.2.js ,backendXML.xml  .<br />
And I want to include third file who will depend on index.html  and backendXML.xml .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: webandnow</title>
		<link>http://blog.webandnow.com/blog/2008/02/28/ajax-fast-and-easy-part-three/#comment-82</link>
		<dc:creator>webandnow</dc:creator>
		<pubDate>Tue, 18 Mar 2008 22:54:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.webandnow.com/blog/2008/02/28/ajax-fast-and-easy-part-three/#comment-82</guid>
		<description>You are right, I didn’t actually go over the clearNode function in this article, however it is in the sample code that you can download to review the source. here is clearNode, add this to your script tag in the head…
function clearNode(node) {
$(node).innerHTML = “”;
}
it just clears out the text we added with the ajax call.</description>
		<content:encoded><![CDATA[<p>You are right, I didn’t actually go over the clearNode function in this article, however it is in the sample code that you can download to review the source. here is clearNode, add this to your script tag in the head…<br />
function clearNode(node) {<br />
$(node).innerHTML = “”;<br />
}<br />
it just clears out the text we added with the ajax call.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marco</title>
		<link>http://blog.webandnow.com/blog/2008/02/28/ajax-fast-and-easy-part-three/#comment-80</link>
		<dc:creator>Marco</dc:creator>
		<pubDate>Tue, 18 Mar 2008 21:01:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.webandnow.com/blog/2008/02/28/ajax-fast-and-easy-part-three/#comment-80</guid>
		<description>Thanks a lot for the tutorial it was easy, simple and clear for me. I'd like to see some follow ups as mentioned above. Just as a comment, in the snippets of code you forgot to include the code of the clearNode function, since I copied and pasted all the code from your web page and when testing mine it showed me that that funcion was missing.

Keep on going and hope you post some more helful hints and the ones you already did.</description>
		<content:encoded><![CDATA[<p>Thanks a lot for the tutorial it was easy, simple and clear for me. I&#8217;d like to see some follow ups as mentioned above. Just as a comment, in the snippets of code you forgot to include the code of the clearNode function, since I copied and pasted all the code from your web page and when testing mine it showed me that that funcion was missing.</p>
<p>Keep on going and hope you post some more helful hints and the ones you already did.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: webandnow</title>
		<link>http://blog.webandnow.com/blog/2008/02/28/ajax-fast-and-easy-part-three/#comment-79</link>
		<dc:creator>webandnow</dc:creator>
		<pubDate>Tue, 18 Mar 2008 17:36:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.webandnow.com/blog/2008/02/28/ajax-fast-and-easy-part-three/#comment-79</guid>
		<description>ajax really only makes the request and gives the response.  It would be up to you to sort the result, and the best way to sort would be to do it in a database query.  so you would want to generate your xml with a query like:

select * from books
order by title

then output the results of that query as xml, ajax will give it back to you however you decide to write the xml.</description>
		<content:encoded><![CDATA[<p>ajax really only makes the request and gives the response.  It would be up to you to sort the result, and the best way to sort would be to do it in a database query.  so you would want to generate your xml with a query like:</p>
<p>select * from books<br />
order by title</p>
<p>then output the results of that query as xml, ajax will give it back to you however you decide to write the xml.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: opally</title>
		<link>http://blog.webandnow.com/blog/2008/02/28/ajax-fast-and-easy-part-three/#comment-50</link>
		<dc:creator>opally</dc:creator>
		<pubDate>Fri, 14 Mar 2008 19:42:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.webandnow.com/blog/2008/02/28/ajax-fast-and-easy-part-three/#comment-50</guid>
		<description>Can you sort your rows in an AJAX request?
If so, can you give an example of sorting your book list alphabetically by author, by title?

(awesome tutorial!)</description>
		<content:encoded><![CDATA[<p>Can you sort your rows in an AJAX request?<br />
If so, can you give an example of sorting your book list alphabetically by author, by title?</p>
<p>(awesome tutorial!)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- analytics977 --> 
