<?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: Animated in-progress indicator for long running pages</title>
	<atom:link href="http://www.stillnetstudios.com/animated-in-progress-indicator-for-long-running-pages/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.stillnetstudios.com/animated-in-progress-indicator-for-long-running-pages/</link>
	<description>Web development notes and commentary from Ryan Stille</description>
	<lastBuildDate>Fri, 30 Jul 2010 20:41:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kirk</title>
		<link>http://www.stillnetstudios.com/animated-in-progress-indicator-for-long-running-pages/comment-page-1/#comment-1497</link>
		<dc:creator>Kirk</dc:creator>
		<pubDate>Tue, 15 Jun 2010 17:04:54 +0000</pubDate>
		<guid isPermaLink="false">http://ryan.cfwebtools.com/2007/02/04/animated-in-progress-indicator-for-long-running-pages/#comment-1497</guid>
		<description>Thank you! The web is such a great place because of people like you!</description>
		<content:encoded><![CDATA[<p>Thank you! The web is such a great place because of people like you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://www.stillnetstudios.com/animated-in-progress-indicator-for-long-running-pages/comment-page-1/#comment-1496</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Tue, 15 Jun 2010 14:32:14 +0000</pubDate>
		<guid isPermaLink="false">http://ryan.cfwebtools.com/2007/02/04/animated-in-progress-indicator-for-long-running-pages/#comment-1496</guid>
		<description>You&#039;re a star!!!

thanks very much.</description>
		<content:encoded><![CDATA[<p>You&#039;re a star!!!</p>
<p>thanks very much.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://www.stillnetstudios.com/animated-in-progress-indicator-for-long-running-pages/comment-page-1/#comment-1495</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Tue, 15 Jun 2010 14:23:40 +0000</pubDate>
		<guid isPermaLink="false">http://ryan.cfwebtools.com/2007/02/04/animated-in-progress-indicator-for-long-running-pages/#comment-1495</guid>
		<description>If you have display:none set on the outer element it shouldn&#039;t display at all.&#160;&#160;You shouldn&#039;t need to have visibility:hidden on there also.

If you do decide to have visibility:hidden on there, then of course you also need to reset that at the same time you reset the &#039;display&#039; attribute.

...
document.getElementById(&quot;inprogress&quot;).style.visibility = &quot;visible&quot;;
document.getElementById(&quot;inprogress&quot;).style.display = &quot;block&quot;;
...</description>
		<content:encoded><![CDATA[<p>If you have display:none set on the outer element it shouldn&#039;t display at all.&nbsp;&nbsp;You shouldn&#039;t need to have visibility:hidden on there also.</p>
<p>If you do decide to have visibility:hidden on there, then of course you also need to reset that at the same time you reset the &#039;display&#039; attribute.</p>
<p>&#8230;<br />
document.getElementById(&quot;inprogress&quot;).style.visibility = &quot;visible&quot;;<br />
document.getElementById(&quot;inprogress&quot;).style.display = &quot;block&quot;;<br />
&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://www.stillnetstudios.com/animated-in-progress-indicator-for-long-running-pages/comment-page-1/#comment-1494</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Tue, 15 Jun 2010 14:20:03 +0000</pubDate>
		<guid isPermaLink="false">http://ryan.cfwebtools.com/2007/02/04/animated-in-progress-indicator-for-long-running-pages/#comment-1494</guid>
		<description>but when I take visibility: hidden off the inprogress element the loader appears as soon as I navigate to the page.</description>
		<content:encoded><![CDATA[<p>but when I take visibility: hidden off the inprogress element the loader appears as soon as I navigate to the page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://www.stillnetstudios.com/animated-in-progress-indicator-for-long-running-pages/comment-page-1/#comment-1493</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Tue, 15 Jun 2010 14:15:19 +0000</pubDate>
		<guid isPermaLink="false">http://ryan.cfwebtools.com/2007/02/04/animated-in-progress-indicator-for-long-running-pages/#comment-1493</guid>
		<description>So a space for it does appear?&#160;&#160;But its just a blank white space?&#160;&#160;Sounds like you still have visibility:hidden still set on some element.</description>
		<content:encoded><![CDATA[<p>So a space for it does appear?&nbsp;&nbsp;But its just a blank white space?&nbsp;&nbsp;Sounds like you still have visibility:hidden still set on some element.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://www.stillnetstudios.com/animated-in-progress-indicator-for-long-running-pages/comment-page-1/#comment-1492</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Tue, 15 Jun 2010 14:11:56 +0000</pubDate>
		<guid isPermaLink="false">http://ryan.cfwebtools.com/2007/02/04/animated-in-progress-indicator-for-long-running-pages/#comment-1492</guid>
		<description>Thanks Ryan for that - I&#039;ve tried changing it on this line:

&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;document.getElementById(&quot;inprogress&quot;).style.visibility = &quot;visible&quot;;

to

document.getElementById(&quot;inprogress&quot;).style.display= &quot;block&quot;; 

but it doesn&#039;t appear then - just leaves space for it.

Any ideas? Cheers</description>
		<content:encoded><![CDATA[<p>Thanks Ryan for that &#8211; I&#039;ve tried changing it on this line:</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;document.getElementById(&quot;inprogress&quot;).style.visibility = &quot;visible&quot;;</p>
<p>to</p>
<p>document.getElementById(&quot;inprogress&quot;).style.display= &quot;block&quot;; </p>
<p>but it doesn&#039;t appear then &#8211; just leaves space for it.</p>
<p>Any ideas? Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ryan</title>
		<link>http://www.stillnetstudios.com/animated-in-progress-indicator-for-long-running-pages/comment-page-1/#comment-1491</link>
		<dc:creator>Ryan</dc:creator>
		<pubDate>Tue, 15 Jun 2010 14:01:05 +0000</pubDate>
		<guid isPermaLink="false">http://ryan.cfwebtools.com/2007/02/04/animated-in-progress-indicator-for-long-running-pages/#comment-1491</guid>
		<description>Adam I would think display:none would work, but to turn it on you&#039;ll have to use style.display=&#039;block&#039; instead of style.visibility=&#039;visible&#039;.</description>
		<content:encoded><![CDATA[<p>Adam I would think display:none would work, but to turn it on you&#039;ll have to use style.display=&#039;block&#039; instead of style.visibility=&#039;visible&#039;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam</title>
		<link>http://www.stillnetstudios.com/animated-in-progress-indicator-for-long-running-pages/comment-page-1/#comment-1490</link>
		<dc:creator>Adam</dc:creator>
		<pubDate>Tue, 15 Jun 2010 13:57:43 +0000</pubDate>
		<guid isPermaLink="false">http://ryan.cfwebtools.com/2007/02/04/animated-in-progress-indicator-for-long-running-pages/#comment-1490</guid>
		<description>Fantastic stuff - thanks a million - one question, and it may be a CSS thing, but because I want my loading box to be say 200px high, how do I have it so that it won&#039;t take up that room on the page before the page has been submitted and the loader initiated. 

I&#039;ve tried &#039;display:none&#039; but then it doesn&#039;t display the loader once the page has been submitted.

This is the bit I&#039;m referring to: 

&lt;p style=&quot;visibility:hidden&quot; id=&quot;inprogress&quot;&gt;
&#160;&#160;&#160;&#160;&lt;img id=&quot;inprogress_img&quot; src=&quot;progress.gif&quot;&gt;
&#160;&#160;&#160;&#160;Please Wait...
&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Fantastic stuff &#8211; thanks a million &#8211; one question, and it may be a CSS thing, but because I want my loading box to be say 200px high, how do I have it so that it won&#039;t take up that room on the page before the page has been submitted and the loader initiated. </p>
<p>I&#039;ve tried &#039;display:none&#039; but then it doesn&#039;t display the loader once the page has been submitted.</p>
<p>This is the bit I&#039;m referring to: </p>
<p>&lt;p style=&quot;visibility:hidden&quot; id=&quot;inprogress&quot;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;img id=&quot;inprogress_img&quot; src=&quot;progress.gif&quot;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;Please Wait&#8230;<br />
&lt;/p&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dickintw</title>
		<link>http://www.stillnetstudios.com/animated-in-progress-indicator-for-long-running-pages/comment-page-1/#comment-1477</link>
		<dc:creator>dickintw</dc:creator>
		<pubDate>Wed, 09 Jun 2010 21:05:18 +0000</pubDate>
		<guid isPermaLink="false">http://ryan.cfwebtools.com/2007/02/04/animated-in-progress-indicator-for-long-running-pages/#comment-1477</guid>
		<description>Thanks! This did the job for me but it took some trial and error to get it to work. In my version of the doSubmit() function, I was also changing the class name on another element:

document.getElementById(&#039;other-big-eye-catching-box&#039;).className = &#039;pleasewait-now&#039;;

The progress bar never became visible until I put this line after the setTimeout() call.

(Tested in FF3.6.3 and IE 8.0.7600).</description>
		<content:encoded><![CDATA[<p>Thanks! This did the job for me but it took some trial and error to get it to work. In my version of the doSubmit() function, I was also changing the class name on another element:</p>
<p>document.getElementById(&#039;other-big-eye-catching-box&#039;).className = &#039;pleasewait-now&#039;;</p>
<p>The progress bar never became visible until I put this line after the setTimeout() call.</p>
<p>(Tested in FF3.6.3 and IE 8.0.7600).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dickintw</title>
		<link>http://www.stillnetstudios.com/animated-in-progress-indicator-for-long-running-pages/comment-page-1/#comment-1476</link>
		<dc:creator>dickintw</dc:creator>
		<pubDate>Wed, 09 Jun 2010 21:01:37 +0000</pubDate>
		<guid isPermaLink="false">http://ryan.cfwebtools.com/2007/02/04/animated-in-progress-indicator-for-long-running-pages/#comment-1476</guid>
		<description>Thanks! This did the job for me but it took a lot of trial and error to get it to work. In my version of the doSubmit() function, I was also changing the class name on another element:

document.getElementById(&#039;other-big-eye-catching-box&#039;).className = &#039;pleasewait-now&#039;;

The progress bar never became visible until I put this line after the setTimeout() call.

(Tested in FF3.6.3 and IE 8.0.7600).</description>
		<content:encoded><![CDATA[<p>Thanks! This did the job for me but it took a lot of trial and error to get it to work. In my version of the doSubmit() function, I was also changing the class name on another element:</p>
<p>document.getElementById(&#039;other-big-eye-catching-box&#039;).className = &#039;pleasewait-now&#039;;</p>
<p>The progress bar never became visible until I put this line after the setTimeout() call.</p>
<p>(Tested in FF3.6.3 and IE 8.0.7600).</p>
]]></content:encoded>
	</item>
</channel>
</rss>
