<?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: Creating Rotating Tabs using jQuery</title>
	<atom:link href="http://www.ilovecolors.com.ar/rotating-jquery-tabs/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ilovecolors.com.ar/rotating-jquery-tabs/</link>
	<description></description>
	<lastBuildDate>Mon, 06 Feb 2012 10:24:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Richard Bultitude</title>
		<link>http://www.ilovecolors.com.ar/rotating-jquery-tabs/#comment-10089</link>
		<dc:creator>Richard Bultitude</dc:creator>
		<pubDate>Wed, 25 Jan 2012 13:23:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=1792#comment-10089</guid>
		<description>Great script and really helpful explanation. The only thing I don&#039;t understand in the script why a &#039;t&#039; is being looked for when clearing or adding the highlight. Can you please shed some light on this logic? 
Thanks :]</description>
		<content:encoded><![CDATA[<p>Great script and really helpful explanation. The only thing I don&#8217;t understand in the script why a &#8216;t&#8217; is being looked for when clearing or adding the highlight. Can you please shed some light on this logic?<br />
Thanks :]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ravindra</title>
		<link>http://www.ilovecolors.com.ar/rotating-jquery-tabs/#comment-9904</link>
		<dc:creator>Ravindra</dc:creator>
		<pubDate>Wed, 16 Nov 2011 08:07:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=1792#comment-9904</guid>
		<description>Awesome use of scrolling tabs with jquery...thanks.</description>
		<content:encoded><![CDATA[<p>Awesome use of scrolling tabs with jquery&#8230;thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shortcodes 4 &#124; wordpress</title>
		<link>http://www.ilovecolors.com.ar/rotating-jquery-tabs/#comment-9120</link>
		<dc:creator>shortcodes 4 &#124; wordpress</dc:creator>
		<pubDate>Sat, 10 Sep 2011 19:43:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=1792#comment-9120</guid>
		<description>[...] Creating Rotating Tabs using jQueryНекоторое время назад я написал статью о создании некоторые вкладки использованием JQuery, библиотеки JavaScript. Один из читателей спросил, могу ли я найти способ, чтобы &#8220;добавить программу, которая автоматически и непрерывно перейти к следующей вкладке даже не нажимая на вкладки?&#8221;. Ну, вот оно и есть. В дополнение к вращающимся вкладок, мы также должны заботиться о поведении, когда пользователь нажимает на самом деле вкладки, останавливая велосипедные поведения на нужную вкладку. Наконец, мы также выделить выбранной вкладки, как в режиме езда на велосипеде, а когда пользователь щелкает по закладке.   Эта запись была опубликована в рубрике shortcodes и отмечена метками shortcodes пользователем gogadmin. Добавить в закладки ссылку. [...]</description>
		<content:encoded><![CDATA[<p>[...] Creating Rotating Tabs using jQueryНекоторое время назад я написал статью о создании некоторые вкладки использованием JQuery, библиотеки JavaScript. Один из читателей спросил, могу ли я найти способ, чтобы &#8220;добавить программу, которая автоматически и непрерывно перейти к следующей вкладке даже не нажимая на вкладки?&#8221;. Ну, вот оно и есть. В дополнение к вращающимся вкладок, мы также должны заботиться о поведении, когда пользователь нажимает на самом деле вкладки, останавливая велосипедные поведения на нужную вкладку. Наконец, мы также выделить выбранной вкладки, как в режиме езда на велосипеде, а когда пользователь щелкает по закладке.   Эта запись была опубликована в рубрике shortcodes и отмечена метками shortcodes пользователем gogadmin. Добавить в закладки ссылку. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: paul</title>
		<link>http://www.ilovecolors.com.ar/rotating-jquery-tabs/#comment-8350</link>
		<dc:creator>paul</dc:creator>
		<pubDate>Tue, 05 Jul 2011 14:19:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=1792#comment-8350</guid>
		<description>This is awsome, just what i needed, my js isnt as good as my php so a helping hand was much appreciated. 

The one thing I wanted was to add a longer delay when the user hovers over the section, so they have properly read / click stuff, so I added the following inplace of the inter = setInterval(&quot;next()&quot;, 1000);

	var delay = 10000; 
	
	$(&#039;.tabs&#039;).hover(function(){
		clearInterval(inter);
		inter = setInterval(&quot;next()&quot;, 1000000);
	}, function(){
		 clearInterval(inter);
		inter = setInterval(&quot;next()&quot;, delay);
	});
	
	inter = setInterval(&quot;next()&quot;, delay);</description>
		<content:encoded><![CDATA[<p>This is awsome, just what i needed, my js isnt as good as my php so a helping hand was much appreciated. </p>
<p>The one thing I wanted was to add a longer delay when the user hovers over the section, so they have properly read / click stuff, so I added the following inplace of the inter = setInterval(&#8220;next()&#8221;, 1000);</p>
<p>	var delay = 10000; </p>
<p>	$(&#8216;.tabs&#8217;).hover(function(){<br />
		clearInterval(inter);<br />
		inter = setInterval(&#8220;next()&#8221;, 1000000);<br />
	}, function(){<br />
		 clearInterval(inter);<br />
		inter = setInterval(&#8220;next()&#8221;, delay);<br />
	});</p>
<p>	inter = setInterval(&#8220;next()&#8221;, delay);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Larry</title>
		<link>http://www.ilovecolors.com.ar/rotating-jquery-tabs/#comment-7624</link>
		<dc:creator>Larry</dc:creator>
		<pubDate>Thu, 28 Apr 2011 21:22:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=1792#comment-7624</guid>
		<description>I can get this to highlight text as it moves along the slider, but when I try to use a box built in css to highlight it doesn&#039;t work. Anyone been able to highlight a tab box as the slider moves along?</description>
		<content:encoded><![CDATA[<p>I can get this to highlight text as it moves along the slider, but when I try to use a box built in css to highlight it doesn&#8217;t work. Anyone been able to highlight a tab box as the slider moves along?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerry Straathof</title>
		<link>http://www.ilovecolors.com.ar/rotating-jquery-tabs/#comment-5208</link>
		<dc:creator>Gerry Straathof</dc:creator>
		<pubDate>Sun, 12 Dec 2010 21:05:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=1792#comment-5208</guid>
		<description>Thanks for this! I used something like this to build a menu for a web-based publishing engine that works on desktops or the iPad. Once you understand the basics of a Tab system, you can expand on it quite a lot. Http://www.straathof.acadnet.ca/beta8.7.2</description>
		<content:encoded><![CDATA[<p>Thanks for this! I used something like this to build a menu for a web-based publishing engine that works on desktops or the iPad. Once you understand the basics of a Tab system, you can expand on it quite a lot. Http://www.straathof.acadnet.ca/beta8.7.2</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jimmy</title>
		<link>http://www.ilovecolors.com.ar/rotating-jquery-tabs/#comment-5103</link>
		<dc:creator>Jimmy</dc:creator>
		<pubDate>Fri, 03 Dec 2010 22:57:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=1792#comment-5103</guid>
		<description>Script is great, Do you know why on some browser the first tabs loads, and all other tabs are blank.  But on other browser all is working fine.</description>
		<content:encoded><![CDATA[<p>Script is great, Do you know why on some browser the first tabs loads, and all other tabs are blank.  But on other browser all is working fine.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elio</title>
		<link>http://www.ilovecolors.com.ar/rotating-jquery-tabs/#comment-3738</link>
		<dc:creator>Elio</dc:creator>
		<pubDate>Fri, 16 Jul 2010 16:56:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=1792#comment-3738</guid>
		<description>Hummm that&#039;s is not an issue because there is no such thing as &quot;leaving the button&quot;, how would you do that?
What you could do is to add another button and issue this call again
&lt;code&gt;
inter = setInterval(&quot;next()&quot;, 1000);
&lt;/code&gt;
Or, when the button is clicked you could start a timer timing out after a veeery long time allowing the user to explore the tab content. After it times out, tabs start rotating again.
However, it&#039;s not a practical solution and I think there are more trouble doing it so than just stopping the rotation, allowing the user to explore the content of each tab at its own pace.</description>
		<content:encoded><![CDATA[<p>Hummm that&#8217;s is not an issue because there is no such thing as &#8220;leaving the button&#8221;, how would you do that?<br />
What you could do is to add another button and issue this call again<br />
<code><br />
inter = setInterval("next()", 1000);<br />
</code><br />
Or, when the button is clicked you could start a timer timing out after a veeery long time allowing the user to explore the tab content. After it times out, tabs start rotating again.<br />
However, it&#8217;s not a practical solution and I think there are more trouble doing it so than just stopping the rotation, allowing the user to explore the content of each tab at its own pace.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jilles</title>
		<link>http://www.ilovecolors.com.ar/rotating-jquery-tabs/#comment-3737</link>
		<dc:creator>Jilles</dc:creator>
		<pubDate>Fri, 16 Jul 2010 11:39:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=1792#comment-3737</guid>
		<description>Great code! Only one issue. When clicking on a button the rotating stops. That is cool, but after leaving the &quot;button&quot; the tabs doesn&#039;t start rotating again. Any solution for that?</description>
		<content:encoded><![CDATA[<p>Great code! Only one issue. When clicking on a button the rotating stops. That is cool, but after leaving the &#8220;button&#8221; the tabs doesn&#8217;t start rotating again. Any solution for that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elio</title>
		<link>http://www.ilovecolors.com.ar/rotating-jquery-tabs/#comment-3667</link>
		<dc:creator>Elio</dc:creator>
		<pubDate>Thu, 08 Jul 2010 16:31:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.ilovecolors.com.ar/?p=1792#comment-3667</guid>
		<description>Gareth, please double check it. I&#039;ve tested it when I posted the fix and tested it just now (downloading and modifying the file available for download on this page) and both highlighting and content displaying works fine.</description>
		<content:encoded><![CDATA[<p>Gareth, please double check it. I&#8217;ve tested it when I posted the fix and tested it just now (downloading and modifying the file available for download on this page) and both highlighting and content displaying works fine.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

