<?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: jQuery Example: Ajax activity indicator</title>
	<atom:link href="http://skfox.com/2008/04/28/jquery-example-ajax-activity-indicator/feed/" rel="self" type="application/rss+xml" />
	<link>http://skfox.com/2008/04/28/jquery-example-ajax-activity-indicator/</link>
	<description>Programmer - an organism that turns coffee into code</description>
	<lastBuildDate>Sat, 13 Mar 2010 01:13:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jaroslaw Dobrzanski</title>
		<link>http://skfox.com/2008/04/28/jquery-example-ajax-activity-indicator/comment-page-1/#comment-1091</link>
		<dc:creator>Jaroslaw Dobrzanski</dc:creator>
		<pubDate>Tue, 09 Jun 2009 18:19:31 +0000</pubDate>
		<guid isPermaLink="false">http://skfox.com/?p=189#comment-1091</guid>
		<description>If you use prototype.js have a look there: http://dobrzanski.net/2007/04/23/ajax-activity-indicator/</description>
		<content:encoded><![CDATA[<p>If you use prototype.js have a look there: <a href="http://dobrzanski.net/2007/04/23/ajax-activity-indicator/" rel="nofollow">http://dobrzanski.net/2007/04/23/ajax-activity-indicator/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shaun Kester</title>
		<link>http://skfox.com/2008/04/28/jquery-example-ajax-activity-indicator/comment-page-1/#comment-1049</link>
		<dc:creator>Shaun Kester</dc:creator>
		<pubDate>Thu, 07 May 2009 20:35:00 +0000</pubDate>
		<guid isPermaLink="false">http://skfox.com/?p=189#comment-1049</guid>
		<description>@frank: An ajax call must be made to the server for it to work. If you are testing locally, i.e. http://localhost, the request could be quick enough that the indicator doesn&#039;t have time to show up.</description>
		<content:encoded><![CDATA[<p>@frank: An ajax call must be made to the server for it to work. If you are testing locally, i.e. <a href="http://localhost" rel="nofollow">http://localhost</a>, the request could be quick enough that the indicator doesn&#8217;t have time to show up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shaun Kester</title>
		<link>http://skfox.com/2008/04/28/jquery-example-ajax-activity-indicator/comment-page-1/#comment-1046</link>
		<dc:creator>Shaun Kester</dc:creator>
		<pubDate>Thu, 07 May 2009 20:29:57 +0000</pubDate>
		<guid isPermaLink="false">http://skfox.com/?p=189#comment-1046</guid>
		<description>@sean: Why do you think that? Works better how? Why not take advantage of jQuery chaining, it&#039;s faster.</description>
		<content:encoded><![CDATA[<p>@sean: Why do you think that? Works better how? Why not take advantage of jQuery chaining, it&#8217;s faster.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://skfox.com/2008/04/28/jquery-example-ajax-activity-indicator/comment-page-1/#comment-1039</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Sun, 26 Apr 2009 00:32:15 +0000</pubDate>
		<guid isPermaLink="false">http://skfox.com/?p=189#comment-1039</guid>
		<description>The last part works much better this way:

$(document).ajaxStart(function () {
$(’#ajaxBusy’).show();
});
$(document).ajaxStop(function (){
$(’#ajaxBusy’).hide();
});</description>
		<content:encoded><![CDATA[<p>The last part works much better this way:</p>
<p>$(document).ajaxStart(function () {<br />
$(’#ajaxBusy’).show();<br />
});<br />
$(document).ajaxStop(function (){<br />
$(’#ajaxBusy’).hide();<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Frank</title>
		<link>http://skfox.com/2008/04/28/jquery-example-ajax-activity-indicator/comment-page-1/#comment-800</link>
		<dc:creator>Frank</dc:creator>
		<pubDate>Sun, 28 Dec 2008 17:34:27 +0000</pubDate>
		<guid isPermaLink="false">http://skfox.com/?p=189#comment-800</guid>
		<description>I have tried everything getting this to work, then again, I am new to JQuery. Both IE and FF not working with it. I placed the first two snippets in the $(document).ready function and the ajaxStart and ajaxStop out of the .ready function. Also, just curious, if there is no call to the server, but a function is working, does it still show the indicator?</description>
		<content:encoded><![CDATA[<p>I have tried everything getting this to work, then again, I am new to JQuery. Both IE and FF not working with it. I placed the first two snippets in the $(document).ready function and the ajaxStart and ajaxStop out of the .ready function. Also, just curious, if there is no call to the server, but a function is working, does it still show the indicator?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bitsandscripts</title>
		<link>http://skfox.com/2008/04/28/jquery-example-ajax-activity-indicator/comment-page-1/#comment-382</link>
		<dc:creator>bitsandscripts</dc:creator>
		<pubDate>Sat, 04 Oct 2008 15:22:25 +0000</pubDate>
		<guid isPermaLink="false">http://skfox.com/?p=189#comment-382</guid>
		<description>thanks for the hint...

@Ashish
check the source of this page http://skfox.com/jqExamples/AjaxActivity.html...</description>
		<content:encoded><![CDATA[<p>thanks for the hint&#8230;</p>
<p>@Ashish<br />
check the source of this page <a href="http://skfox.com/jqExamples/AjaxActivity.html.." rel="nofollow">http://skfox.com/jqExamples/AjaxActivity.html..</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashish</title>
		<link>http://skfox.com/2008/04/28/jquery-example-ajax-activity-indicator/comment-page-1/#comment-376</link>
		<dc:creator>Ashish</dc:creator>
		<pubDate>Mon, 29 Sep 2008 06:03:10 +0000</pubDate>
		<guid isPermaLink="false">http://skfox.com/?p=189#comment-376</guid>
		<description>Hi Shaun ,

Nice One !! This is very nice example of Ajax Load Indicator .I was really looking for such stuff since long time . I tried this example but still not getting any output this is my code 






First jQuery Test







$(&quot;body&quot;).append(&#039;

	

&#039;);

$(&#039;#ajaxBusy&#039;).css({
	display:&quot;none&quot;,
	margin:&quot;0px&quot;,
	paddingLeft:&quot;0px&quot;,
	paddingRight:&quot;0px&quot;,
	paddingTop:&quot;0px&quot;,
	paddingBottom:&quot;0px&quot;,
	position:&quot;absolute&quot;,
	right:&quot;3px&quot;,
	top:&quot;3px&quot;,
	width:&quot;auto&quot;
});

	$(document).ajaxStart(function () {
		$(&#039;#ajaxBusy&#039;).show();
	}).ajaxStop(function (){
		$(&#039;#ajaxBusy&#039;).hide();
	});











This is My Changed Test Page
	
	
	
	
		
	
	
	



		
		

		
	
	
	


PLease help me i really need it !!</description>
		<content:encoded><![CDATA[<p>Hi Shaun ,</p>
<p>Nice One !! This is very nice example of Ajax Load Indicator .I was really looking for such stuff since long time . I tried this example but still not getting any output this is my code </p>
<p>First jQuery Test</p>
<p>$(&#8220;body&#8221;).append(&#8216;</p>
<p>&#8216;);</p>
<p>$(&#8216;#ajaxBusy&#8217;).css({<br />
	display:&#8221;none&#8221;,<br />
	margin:&#8221;0px&#8221;,<br />
	paddingLeft:&#8221;0px&#8221;,<br />
	paddingRight:&#8221;0px&#8221;,<br />
	paddingTop:&#8221;0px&#8221;,<br />
	paddingBottom:&#8221;0px&#8221;,<br />
	position:&#8221;absolute&#8221;,<br />
	right:&#8221;3px&#8221;,<br />
	top:&#8221;3px&#8221;,<br />
	width:&#8221;auto&#8221;<br />
});</p>
<p>	$(document).ajaxStart(function () {<br />
		$(&#8216;#ajaxBusy&#8217;).show();<br />
	}).ajaxStop(function (){<br />
		$(&#8216;#ajaxBusy&#8217;).hide();<br />
	});</p>
<p>This is My Changed Test Page</p>
<p>PLease help me i really need it !!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chinuku</title>
		<link>http://skfox.com/2008/04/28/jquery-example-ajax-activity-indicator/comment-page-1/#comment-311</link>
		<dc:creator>Chinuku</dc:creator>
		<pubDate>Mon, 18 Aug 2008 06:40:02 +0000</pubDate>
		<guid isPermaLink="false">http://skfox.com/?p=189#comment-311</guid>
		<description>its really  Nice and helps me a lot!!</description>
		<content:encoded><![CDATA[<p>its really  Nice and helps me a lot!!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
