<?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: Instant AJAX Tutorial</title>
	<atom:link href="http://aleembawany.com/2005/09/01/ajax-instant-tutorial/feed/" rel="self" type="application/rss+xml" />
	<link>http://aleembawany.com/2005/09/01/ajax-instant-tutorial/</link>
	<description>tech, web and the rest</description>
	<lastBuildDate>Sat, 05 May 2012 18:55:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: gömlekçi</title>
		<link>http://aleembawany.com/2005/09/01/ajax-instant-tutorial/comment-page-1/#comment-22204</link>
		<dc:creator>gömlekçi</dc:creator>
		<pubDate>Wed, 01 Oct 2008 20:43:37 +0000</pubDate>
		<guid isPermaLink="false">http://aleembawany.com/2005/09/01/ajax-instant-tutorial/#comment-22204</guid>
		<description>yes it is make a function which instantiate xmlhttp object and call that function in settimeout method.</description>
		<content:encoded><![CDATA[<p>yes it is make a function which instantiate xmlhttp object and call that function in settimeout method.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ianime</title>
		<link>http://aleembawany.com/2005/09/01/ajax-instant-tutorial/comment-page-1/#comment-21882</link>
		<dc:creator>ianime</dc:creator>
		<pubDate>Thu, 25 Sep 2008 06:50:01 +0000</pubDate>
		<guid isPermaLink="false">http://aleembawany.com/2005/09/01/ajax-instant-tutorial/#comment-21882</guid>
		<description>try this...



Using a div


function displayText(txt)
	{
		document.getElementById(&quot;targetDiv&quot;).innerHTML = txt;
	}





Using a div











i interchanged the single quotes with the double quotes, and it worked for me.......</description>
		<content:encoded><![CDATA[<p>try this&#8230;</p>
<p>Using a div</p>
<p>function displayText(txt)<br />
	{<br />
		document.getElementById(&#8220;targetDiv&#8221;).innerHTML = txt;<br />
	}</p>
<p>Using a div</p>
<p>i interchanged the single quotes with the double quotes, and it worked for me&#8230;&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tabish Z</title>
		<link>http://aleembawany.com/2005/09/01/ajax-instant-tutorial/comment-page-1/#comment-20621</link>
		<dc:creator>Tabish Z</dc:creator>
		<pubDate>Mon, 01 Sep 2008 14:39:20 +0000</pubDate>
		<guid isPermaLink="false">http://aleembawany.com/2005/09/01/ajax-instant-tutorial/#comment-20621</guid>
		<description>I was wondering if it supports urls like something.com/page.php?id=1
I tried it, it loads the page but without sending the GET variables. it is &quot;?id=1&quot; was never there.. any ideas?</description>
		<content:encoded><![CDATA[<p>I was wondering if it supports urls like something.com/page.php?id=1<br />
I tried it, it loads the page but without sending the GET variables. it is &#8220;?id=1&#8243; was never there.. any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Salman</title>
		<link>http://aleembawany.com/2005/09/01/ajax-instant-tutorial/comment-page-1/#comment-20545</link>
		<dc:creator>Salman</dc:creator>
		<pubDate>Sun, 31 Aug 2008 06:55:08 +0000</pubDate>
		<guid isPermaLink="false">http://aleembawany.com/2005/09/01/ajax-instant-tutorial/#comment-20545</guid>
		<description>hi,
i wanna know that how i use ajax with ASP.net 2.0?should i have to download an API of AJAX or something else have to be done in order to use AJAX?</description>
		<content:encoded><![CDATA[<p>hi,<br />
i wanna know that how i use ajax with ASP.net 2.0?should i have to download an API of AJAX or something else have to be done in order to use AJAX?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Katsuke</title>
		<link>http://aleembawany.com/2005/09/01/ajax-instant-tutorial/comment-page-1/#comment-19629</link>
		<dc:creator>Katsuke</dc:creator>
		<pubDate>Wed, 13 Aug 2008 14:10:08 +0000</pubDate>
		<guid isPermaLink="false">http://aleembawany.com/2005/09/01/ajax-instant-tutorial/#comment-19629</guid>
		<description>@Gavin

“Error: syntax error
Source File: file:// - URL of .txt here -
Hello World!”

that sounds to me like you are not using the right path to the file to load, post your code to take a look at it</description>
		<content:encoded><![CDATA[<p>@Gavin</p>
<p>“Error: syntax error<br />
Source File: file:// &#8211; URL of .txt here -<br />
Hello World!”</p>
<p>that sounds to me like you are not using the right path to the file to load, post your code to take a look at it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gavin</title>
		<link>http://aleembawany.com/2005/09/01/ajax-instant-tutorial/comment-page-1/#comment-18904</link>
		<dc:creator>Gavin</dc:creator>
		<pubDate>Sun, 27 Jul 2008 12:24:05 +0000</pubDate>
		<guid isPermaLink="false">http://aleembawany.com/2005/09/01/ajax-instant-tutorial/#comment-18904</guid>
		<description>Hey, can somebody help?
I&#039;ve been pulling my hair out trying to get my XMLHttp request object to work!

Every time I try to call the object.responseText (even when I copy the example above) there is no repsonse. In firefox the error reads- 
 &quot;Error: syntax error
Source File: file:// - URL of .txt here - 
Hello World!&quot;

I&#039;m working through Ajax for dummies at the moment and all of the examples from the book have the same problem, none of them will work.

Any clues?

thanks</description>
		<content:encoded><![CDATA[<p>Hey, can somebody help?<br />
I&#8217;ve been pulling my hair out trying to get my XMLHttp request object to work!</p>
<p>Every time I try to call the object.responseText (even when I copy the example above) there is no repsonse. In firefox the error reads-<br />
 &#8220;Error: syntax error<br />
Source File: file:// &#8211; URL of .txt here &#8211;<br />
Hello World!&#8221;</p>
<p>I&#8217;m working through Ajax for dummies at the moment and all of the examples from the book have the same problem, none of them will work.</p>
<p>Any clues?</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: schrecke</title>
		<link>http://aleembawany.com/2005/09/01/ajax-instant-tutorial/comment-page-1/#comment-17506</link>
		<dc:creator>schrecke</dc:creator>
		<pubDate>Fri, 13 Jun 2008 07:52:22 +0000</pubDate>
		<guid isPermaLink="false">http://aleembawany.com/2005/09/01/ajax-instant-tutorial/#comment-17506</guid>
		<description>hey there

great tutorial ... but can anybody help me (Iive not much anticipation in js/ajax) and modify the script about a function to close reloaded content or get the aboriginal content back respectively.

ex:

link - close
you klick on the &quot;link&quot; - it loads content, you click on closed - it closes the content.

and ... it have to be possible to to reload different content on different places on the website and also closed them separatily.

i would be very happy about that

great thank

gr33tz, schrecke</description>
		<content:encoded><![CDATA[<p>hey there</p>
<p>great tutorial &#8230; but can anybody help me (Iive not much anticipation in js/ajax) and modify the script about a function to close reloaded content or get the aboriginal content back respectively.</p>
<p>ex:</p>
<p>link &#8211; close<br />
you klick on the &#8220;link&#8221; &#8211; it loads content, you click on closed &#8211; it closes the content.</p>
<p>and &#8230; it have to be possible to to reload different content on different places on the website and also closed them separatily.</p>
<p>i would be very happy about that</p>
<p>great thank</p>
<p>gr33tz, schrecke</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leela</title>
		<link>http://aleembawany.com/2005/09/01/ajax-instant-tutorial/comment-page-1/#comment-16976</link>
		<dc:creator>Leela</dc:creator>
		<pubDate>Thu, 29 May 2008 12:01:45 +0000</pubDate>
		<guid isPermaLink="false">http://aleembawany.com/2005/09/01/ajax-instant-tutorial/#comment-16976</guid>
		<description>Hi,

I have to do a part in ajax on my asp page. I&#039;m new to ajax and asp.
On an asp page i want to display a list of items that are added at run time.
Display should be like a grid where i can delete the record or add a new record but i dont know hw to start with this on asp page, help me out.

Thanks
leela</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I have to do a part in ajax on my asp page. I&#8217;m new to ajax and asp.<br />
On an asp page i want to display a list of items that are added at run time.<br />
Display should be like a grid where i can delete the record or add a new record but i dont know hw to start with this on asp page, help me out.</p>
<p>Thanks<br />
leela</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raf</title>
		<link>http://aleembawany.com/2005/09/01/ajax-instant-tutorial/comment-page-1/#comment-16456</link>
		<dc:creator>Raf</dc:creator>
		<pubDate>Wed, 21 May 2008 14:59:54 +0000</pubDate>
		<guid isPermaLink="false">http://aleembawany.com/2005/09/01/ajax-instant-tutorial/#comment-16456</guid>
		<description>Use a div tag with id=&quot;output&quot; where you want to see the output and use div with onclick=&quot;loadurl(&quot;xxxx&quot;) where you wanna set the clickable link, that’s easy…</description>
		<content:encoded><![CDATA[<p>Use a div tag with id=&#8221;output&#8221; where you want to see the output and use div with onclick=&#8221;loadurl(&#8220;xxxx&#8221;) where you wanna set the clickable link, that’s easy…</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raf</title>
		<link>http://aleembawany.com/2005/09/01/ajax-instant-tutorial/comment-page-1/#comment-16454</link>
		<dc:creator>Raf</dc:creator>
		<pubDate>Wed, 21 May 2008 14:57:16 +0000</pubDate>
		<guid isPermaLink="false">http://aleembawany.com/2005/09/01/ajax-instant-tutorial/#comment-16454</guid>
		<description>I got the resulr use a  where you want to see the output and use  where you wanna set the clickable link, that&#039;s easy...</description>
		<content:encoded><![CDATA[<p>I got the resulr use a  where you want to see the output and use  where you wanna set the clickable link, that&#8217;s easy&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

