<rss version="2.0">
		<channel>
			<title>SkillShare Forum - CSS Beauty - Change Text Every 5 Seconds..</title>
			<lastBuildDate>Wed, 22 May 2013 09:30:08 -0400</lastBuildDate>
			<link>http://cssbeauty.com/skillshare/</link>
			<description></description>
			<generator>Lussumo Vanilla 1.1.9</generator>
			<item>
		<title>Change Text Every 5 Seconds..</title>
		<link>http://cssbeauty.com/skillshare/discussion/955/?Focus=6159#Comment_6159</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/955/?Focus=6159#Comment_6159</guid>
		<pubDate>Fri, 11 Aug 2006 16:16:54 -0400</pubDate>
		<author>konitz</author>
		<description>
			<![CDATA[any javascript or something to change text every some seconds... i cant find a example...<br />thanks]]>
		</description>
	</item>
	<item>
		<title>Change Text Every 5 Seconds..</title>
		<link>http://cssbeauty.com/skillshare/discussion/955/?Focus=6160#Comment_6160</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/955/?Focus=6160#Comment_6160</guid>
		<pubDate>Fri, 11 Aug 2006 17:02:29 -0400</pubDate>
		<author>varland</author>
		<description>
			<![CDATA[Your best bet is probably the setTimeout function. There are references all over the web.]]>
		</description>
	</item>
	<item>
		<title>Change Text Every 5 Seconds..</title>
		<link>http://cssbeauty.com/skillshare/discussion/955/?Focus=6167#Comment_6167</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/955/?Focus=6167#Comment_6167</guid>
		<pubDate>Sat, 12 Aug 2006 17:50:35 -0400</pubDate>
		<author>premii</author>
		<description>
			<![CDATA[use setInterval <br />syntax:<br /><code ><br />var t = setInterval(function(){document.body.innerHTML = new Date().getTime();}, 5000);<br /></code>]]>
		</description>
	</item>
	<item>
		<title>Change Text Every 5 Seconds..</title>
		<link>http://cssbeauty.com/skillshare/discussion/955/?Focus=6190#Comment_6190</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/955/?Focus=6190#Comment_6190</guid>
		<pubDate>Sun, 13 Aug 2006 06:10:49 -0400</pubDate>
		<author>varland</author>
		<description>
			<![CDATA[setInterval is the one I was thinking of. Sorry about the confusion.]]>
		</description>
	</item>
	<item>
		<title>Change Text Every 5 Seconds..</title>
		<link>http://cssbeauty.com/skillshare/discussion/955/?Focus=6194#Comment_6194</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/955/?Focus=6194#Comment_6194</guid>
		<pubDate>Sun, 13 Aug 2006 12:18:55 -0400</pubDate>
		<author>konitz</author>
		<description>
			<![CDATA[hi, i use the syntax, the text change but where put the text that i want to change, when change... change some numbers like this: 1155496712107 etc....... help me!!!]]>
		</description>
	</item>
	<item>
		<title>Change Text Every 5 Seconds..</title>
		<link>http://cssbeauty.com/skillshare/discussion/955/?Focus=6203#Comment_6203</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/955/?Focus=6203#Comment_6203</guid>
		<pubDate>Sun, 13 Aug 2006 21:49:02 -0400</pubDate>
		<author>JohnRiv</author>
		<description>
			<![CDATA[premii's script will display the number of milliseconds since THE epoch (which was midnight on January 1, 1970) and update the number every 5 seconds (5000 milliseconds).<br /><br />what is the text you want to change and what do you want to change it to?]]>
		</description>
	</item>
	<item>
		<title>Change Text Every 5 Seconds..</title>
		<link>http://cssbeauty.com/skillshare/discussion/955/?Focus=6216#Comment_6216</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/955/?Focus=6216#Comment_6216</guid>
		<pubDate>Mon, 14 Aug 2006 09:58:37 -0400</pubDate>
		<author>konitz</author>
		<description>
			<![CDATA[thanks JohnRiv in mean change by example this:<br /><br />New Release... Leopard<br />Ten Reason to Buy Gumballs<br />White House bla bla<br /><br />i mean first one new, later dissapear and come the second in the same position... etc...<br /><br />thanks]]>
		</description>
	</item>
	<item>
		<title>Change Text Every 5 Seconds..</title>
		<link>http://cssbeauty.com/skillshare/discussion/955/?Focus=6217#Comment_6217</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/955/?Focus=6217#Comment_6217</guid>
		<pubDate>Mon, 14 Aug 2006 10:15:47 -0400</pubDate>
		<author>JohnRiv</author>
		<description>
			<![CDATA[&lt;html&gt;<br />&lt;head&gt;<br />	&lt;title&gt;Rotating Text&lt;/title&gt;<br />	&lt;script type="text/javascript"&gt;<br />		var rotatingTextElement;<br />		var rotatingText = new Array();<br />		var ctr = 0;<br /><br />		function initRotateText() {<br />			rotatingTextElement = document.getElementById("textToChange");<br />			rotatingText[0] = rotatingTextElement.innerHTML; // store the content that's already on the page<br />			rotatingText[1] = "Ten Reason to Buy Gumballs";<br />			rotatingText[2] = "White House bla bla";<br />			setInterval(rotateText, 5000);<br />		}<br />		function rotateText() {<br />			ctr++;<br />			if(ctr &gt;= rotatingText.length) {<br />				ctr = 0;<br />			}<br />			rotatingTextElement.innerHTML = rotatingText[ctr];<br />		}<br />		window.onload = initRotateText;<br />	&lt;/script&gt;<br />&lt;/head&gt;<br />&lt;body&gt;<br />	&lt;span id="textToChange"&gt;New Release... Leopard&lt;/span&gt;<br />&lt;/body&gt;<br />&lt;/html&gt;]]>
		</description>
	</item>
	<item>
		<title>Change Text Every 5 Seconds..</title>
		<link>http://cssbeauty.com/skillshare/discussion/955/?Focus=6218#Comment_6218</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/955/?Focus=6218#Comment_6218</guid>
		<pubDate>Mon, 14 Aug 2006 11:02:45 -0400</pubDate>
		<author>konitz</author>
		<description>
			<![CDATA[Wow You Rocks Jonh Riv... Amazing thanks a lot!!!!! works perfect! :)]]>
		</description>
	</item>
	<item>
		<title>Change Text Every 5 Seconds..</title>
		<link>http://cssbeauty.com/skillshare/discussion/955/?Focus=6226#Comment_6226</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/955/?Focus=6226#Comment_6226</guid>
		<pubDate>Mon, 14 Aug 2006 12:12:37 -0400</pubDate>
		<author>JohnRiv</author>
		<description>
			<![CDATA[Glad to help. One thing I do want to point out is that I used innerHTML rather than "real" W3C DOM methods because it's faster... see <a href="http://www.quirksmode.org/dom/innerhtml.html" target="_blank" rel="nofollow">http://www.quirksmode.org/dom/innerhtml.html</a> for more info]]>
		</description>
	</item>
	<item>
		<title>Change Text Every 5 Seconds..</title>
		<link>http://cssbeauty.com/skillshare/discussion/955/?Focus=6246#Comment_6246</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/955/?Focus=6246#Comment_6246</guid>
		<pubDate>Mon, 14 Aug 2006 23:44:00 -0400</pubDate>
		<author>konitz</author>
		<description>
			<![CDATA[thanks John look this, I need put links to the messages... I can only put to the first one... the others I cant!. please help me! thanks a lot!<br /><br />the html:<br />--------------------------------<br />&lt;span id="textToChange"&gt;&lt;a href="#"&gt;Nuevo disco HIM Dark Light producido por Roger Dean a la venta el 30 de Mayo&lt;/a&gt;&lt;/span&gt;<br /><br /><br />the java:<br />--------------------------------<br />var rotatingTextElement;<br />var rotatingText = new Array();<br />var ctr = 0;<br /><br />function initRotateText() {<br />rotatingTextElement = document.getElementById("textToChange");<br />rotatingText[0] = rotatingTextElement.innerHTML; // store the content that's already on the page<br />rotatingText[1] = "Bauhaus DVD Shadow Light";<br />rotatingText[2] = "Remaster The Clash - London Calling 4 CDs Box Set";<br />rotatingText[3] = "The Cure 2CDs Greatest Hits";<br />setInterval(rotateText, 6000);<br />}<br />function rotateText() {<br />ctr++;<br />if(ctr &gt;= rotatingText.length) {<br />ctr = 0;<br />}<br />rotatingTextElement.innerHTML = rotatingText[ctr];<br />}<br />window.onload = initRotateText;]]>
		</description>
	</item>
	<item>
		<title>Change Text Every 5 Seconds..</title>
		<link>http://cssbeauty.com/skillshare/discussion/955/?Focus=6248#Comment_6248</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/955/?Focus=6248#Comment_6248</guid>
		<pubDate>Tue, 15 Aug 2006 00:03:45 -0400</pubDate>
		<author>PettyRider</author>
		<description>
			<![CDATA[Put the hyperlink ANCHORs in your `rotatingText` array.<br /><br /><code >rotatingText[1] = &quot;&lt;a href=\&quot;bauhaus.htm\&quot;?phpMyAdmin=4594f30712f4fabaff6997416810f3f2&gt;Bauhaus DVD Shadow Light&lt;/a&gt;&quot;;<br />...</code><br />Be sure to escape the attribute quotes in the array values.<br /><br />I think this will work, using the non-standard innerHTML property in your code. I could be wrong.]]>
		</description>
	</item>
	<item>
		<title>Change Text Every 5 Seconds..</title>
		<link>http://cssbeauty.com/skillshare/discussion/955/?Focus=6282#Comment_6282</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/955/?Focus=6282#Comment_6282</guid>
		<pubDate>Tue, 15 Aug 2006 19:49:49 -0400</pubDate>
		<author>konitz</author>
		<description>
			<![CDATA[wow PettyRider, that works!!! thanks you are not wrong... cool thanks to all guys!!!]]>
		</description>
	</item>
	<item>
		<title>Change Text Every 5 Seconds..</title>
		<link>http://cssbeauty.com/skillshare/discussion/955/?Focus=16630#Comment_16630</link>
		<guid isPermaLink="false">http://cssbeauty.com/skillshare/discussion/955/?Focus=16630#Comment_16630</guid>
		<pubDate>Wed, 03 Feb 2010 06:02:51 -0500</pubDate>
		<author>ponder</author>
		<description>
			<![CDATA[hi friends<br />&lt;html><br />&lt;head><br />&lt;title>Rotating Text&lt;/title><br />&lt;script type="text/javascript"><br />var rotatingTextElement;<br />var rotatingText = new Array();<br />var ctr = 0;<br /><br />function initRotateText() {<br />rotatingTextElement = document.getElementById("textToChange");<br />rotatingText[0] = rotatingTextElement.innerHTML; // store the content that's already on the page<br />rotatingText[1] = "Ten Reason to Buy Gumballs";<br />rotatingText[2] = "White House bla bla";<br />setInterval(rotateText, 5000);<br />}<br />function rotateText() {<br />ctr++;<br />if(ctr >= rotatingText.length) {<br />ctr = 0;<br />}<br />rotatingTextElement.innerHTML = rotatingText[ctr];<br />}<br />window.onload = initRotateText;<br />&lt;/script><br />&lt;/head><br />&lt;body><br />&lt;span id="textToChange">New Release... Leopard&lt;/span><br />&lt;/body><br />&lt;/html> <br /><br /><br />the above code is working fine,, but i need the above program for n number... <br /><br />its possible to do?????]]>
		</description>
	</item>
	
		</channel>
	</rss>