<?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: Fancy Sliding Tab Menu V2</title>
	<atom:link href="http://www.andrewsellick.com/64/fancy-sliding-tab-menu-v2/feed" rel="self" type="application/rss+xml" />
	<link>http://www.andrewsellick.com/64/fancy-sliding-tab-menu-v2</link>
	<description>andrewsellick.com</description>
	<lastBuildDate>Wed, 10 Mar 2010 23:46:56 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Fjonan</title>
		<link>http://www.andrewsellick.com/64/fancy-sliding-tab-menu-v2/comment-page-2#comment-57039</link>
		<dc:creator>Fjonan</dc:creator>
		<pubDate>Thu, 07 Jan 2010 11:22:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewsellick.com/64/fancy-sliding-tab-menu-v2#comment-57039</guid>
		<description>@Jon9486:

I would not include

Event.observe(panels[i].getElementsByTagName(’div’)[0], ‘mouseout’, resetTabs, false);

Since stopping the motion with mouseout breaks the whole slide menu. Easily seen if you move across the panels very fast with your mouse it takes only a few movements to break the menu. This has to do with the motion not finished and you already send another task (closing) to the script engine and it gets stuck.

So do NOT include the MouseOut event!</description>
		<content:encoded><![CDATA[<p>@Jon9486:</p>
<p>I would not include</p>
<p>Event.observe(panels[i].getElementsByTagName(’div’)[0], ‘mouseout’, resetTabs, false);</p>
<p>Since stopping the motion with mouseout breaks the whole slide menu. Easily seen if you move across the panels very fast with your mouse it takes only a few movements to break the menu. This has to do with the motion not finished and you already send another task (closing) to the script engine and it gets stuck.</p>
<p>So do NOT include the MouseOut event!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon9486</title>
		<link>http://www.andrewsellick.com/64/fancy-sliding-tab-menu-v2/comment-page-2#comment-57022</link>
		<dc:creator>Jon9486</dc:creator>
		<pubDate>Sun, 20 Dec 2009 11:48:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewsellick.com/64/fancy-sliding-tab-menu-v2#comment-57022</guid>
		<description>Also, for what it&#039;s worth, in the section of &quot;tabslide.js&quot; where it says:

Event.observe(panels[i].getElementsByTagName(&#039;h3&#039;)[0], &#039;mouseover&#039;, accordion, false);		Event.observe(panels[i].getElementsByTagName(&#039;h3&#039;)[0], &#039;mousemove&#039;, accordion, false);

If you add the following line right below that, it will cause the menu to close when you exit the menu--the way everyone&#039;s been asking (though this script, as a whole, has too many bugs for anything to really work well enough anyway. And this is a bit of a silly way to accomplish making the menu close when moving off of it--but I didn&#039;t feel like devoting hours to making a better way):

Event.observe(panels[i].getElementsByTagName(&#039;div&#039;)[0], &#039;mouseout&#039;, resetTabs, false);</description>
		<content:encoded><![CDATA[<p>Also, for what it&#8217;s worth, in the section of &#8220;tabslide.js&#8221; where it says:</p>
<p>Event.observe(panels[i].getElementsByTagName(&#8217;h3&#8242;)[0], &#8216;mouseover&#8217;, accordion, false);		Event.observe(panels[i].getElementsByTagName(&#8217;h3&#8242;)[0], &#8216;mousemove&#8217;, accordion, false);</p>
<p>If you add the following line right below that, it will cause the menu to close when you exit the menu&#8211;the way everyone&#8217;s been asking (though this script, as a whole, has too many bugs for anything to really work well enough anyway. And this is a bit of a silly way to accomplish making the menu close when moving off of it&#8211;but I didn&#8217;t feel like devoting hours to making a better way):</p>
<p>Event.observe(panels[i].getElementsByTagName(&#8217;div&#8217;)[0], &#8216;mouseout&#8217;, resetTabs, false);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon9486</title>
		<link>http://www.andrewsellick.com/64/fancy-sliding-tab-menu-v2/comment-page-2#comment-57021</link>
		<dc:creator>Jon9486</dc:creator>
		<pubDate>Sun, 20 Dec 2009 08:27:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewsellick.com/64/fancy-sliding-tab-menu-v2#comment-57021</guid>
		<description>A little helpful change:

find in tabslide.js (not including the code divider lines I made):
~~~~~~~~~~~~~~~~

function resetIdle(){
		if( $(&#039;visible&#039;) ){
				window.clearTimeout( slideTime );
				slideTime = window.setTimeout( &quot;resetTabs()&quot;, 10000 );
		}
}

function setIdle(){
	if( $(&#039;visible&#039;) ){
		slideTime = window.setTimeout( &quot;resetTabs()&quot;, 10000 );
	}
}
~~~~~~~~~~~~~~~~

And change to:

~~~~~~~~~~~~~~~~
function resetIdle(){
		if( $(&#039;visible&#039;) ){
				window.clearTimeout( slideTime );
				slideTime = window.setTimeout( &quot;resetTabs()&quot;, menuTimoutDuration );
		}
}

function setIdle(){
	if( $(&#039;visible&#039;) ){
		slideTime = window.setTimeout( &quot;resetTabs()&quot;, menuTimoutDuration );
	}
}

~~~~~~~~~~~~~~

Then add at the top of the script:

var menuTimoutDuration = 1; // Number in seconds. Default: 10 seconds.

// Convert seconds into milliseconds for JavaScript to understand.
menuTimoutDuration = menuTimoutDuration * 1000;

~~~~~~~~~~~~~~

Also in that same file, find all the places it has &quot;0.3&quot; and change it to:

menuSlideSpeed

~~~~~~~~~~~~~~

Then add at the top of the file:

var menuSlideSpeed = 0.8;  // Default: 0.3</description>
		<content:encoded><![CDATA[<p>A little helpful change:</p>
<p>find in tabslide.js (not including the code divider lines I made):<br />
~~~~~~~~~~~~~~~~</p>
<p>function resetIdle(){<br />
		if( $(&#8217;visible&#8217;) ){<br />
				window.clearTimeout( slideTime );<br />
				slideTime = window.setTimeout( &#8220;resetTabs()&#8221;, 10000 );<br />
		}<br />
}</p>
<p>function setIdle(){<br />
	if( $(&#8217;visible&#8217;) ){<br />
		slideTime = window.setTimeout( &#8220;resetTabs()&#8221;, 10000 );<br />
	}<br />
}<br />
~~~~~~~~~~~~~~~~</p>
<p>And change to:</p>
<p>~~~~~~~~~~~~~~~~<br />
function resetIdle(){<br />
		if( $(&#8217;visible&#8217;) ){<br />
				window.clearTimeout( slideTime );<br />
				slideTime = window.setTimeout( &#8220;resetTabs()&#8221;, menuTimoutDuration );<br />
		}<br />
}</p>
<p>function setIdle(){<br />
	if( $(&#8217;visible&#8217;) ){<br />
		slideTime = window.setTimeout( &#8220;resetTabs()&#8221;, menuTimoutDuration );<br />
	}<br />
}</p>
<p>~~~~~~~~~~~~~~</p>
<p>Then add at the top of the script:</p>
<p>var menuTimoutDuration = 1; // Number in seconds. Default: 10 seconds.</p>
<p>// Convert seconds into milliseconds for JavaScript to understand.<br />
menuTimoutDuration = menuTimoutDuration * 1000;</p>
<p>~~~~~~~~~~~~~~</p>
<p>Also in that same file, find all the places it has &#8220;0.3&#8243; and change it to:</p>
<p>menuSlideSpeed</p>
<p>~~~~~~~~~~~~~~</p>
<p>Then add at the top of the file:</p>
<p>var menuSlideSpeed = 0.8;  // Default: 0.3</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lemontree</title>
		<link>http://www.andrewsellick.com/64/fancy-sliding-tab-menu-v2/comment-page-2#comment-57009</link>
		<dc:creator>lemontree</dc:creator>
		<pubDate>Thu, 10 Dec 2009 18:52:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewsellick.com/64/fancy-sliding-tab-menu-v2#comment-57009</guid>
		<description>Great work! Could you please show us how to change the mouseout function so that the menu collapse once I mouseout of the nav area?

Thanks very much!</description>
		<content:encoded><![CDATA[<p>Great work! Could you please show us how to change the mouseout function so that the menu collapse once I mouseout of the nav area?</p>
<p>Thanks very much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: RIA Worlds &#187; Tab选项卡切换效果汇总 应该会有你满意的一个</title>
		<link>http://www.andrewsellick.com/64/fancy-sliding-tab-menu-v2/comment-page-2#comment-57006</link>
		<dc:creator>RIA Worlds &#187; Tab选项卡切换效果汇总 应该会有你满意的一个</dc:creator>
		<pubDate>Mon, 07 Dec 2009 08:18:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewsellick.com/64/fancy-sliding-tab-menu-v2#comment-57006</guid>
		<description>[...] Fancy Sliding Tab Menu- [...]</description>
		<content:encoded><![CDATA[<p>[...] Fancy Sliding Tab Menu- [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Collection of 30+ AJAX Menu Plugins - DoNotYet.com</title>
		<link>http://www.andrewsellick.com/64/fancy-sliding-tab-menu-v2/comment-page-2#comment-56917</link>
		<dc:creator>Collection of 30+ AJAX Menu Plugins - DoNotYet.com</dc:creator>
		<pubDate>Sun, 25 Oct 2009 13:14:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewsellick.com/64/fancy-sliding-tab-menu-v2#comment-56917</guid>
		<description>[...] Fancy Sliding Tab Menu using Script.aculo.us [...]</description>
		<content:encoded><![CDATA[<p>[...] Fancy Sliding Tab Menu using Script.aculo.us [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Free Ajax scripts</title>
		<link>http://www.andrewsellick.com/64/fancy-sliding-tab-menu-v2/comment-page-2#comment-56912</link>
		<dc:creator>Free Ajax scripts</dc:creator>
		<pubDate>Thu, 22 Oct 2009 10:55:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewsellick.com/64/fancy-sliding-tab-menu-v2#comment-56912</guid>
		<description>Hello, Very nice work, I have listed you in free ajax scripts directory - http://freeajaxscripts.net/directory/Ajax_menus/Fancy_Sliding_Tab_Menu/details.html</description>
		<content:encoded><![CDATA[<p>Hello, Very nice work, I have listed you in free ajax scripts directory &#8211; <a href="http://freeajaxscripts.net/directory/Ajax_menus/Fancy_Sliding_Tab_Menu/details.html" rel="nofollow">http://freeajaxscripts.net/directory/Ajax_menus/Fancy_Sliding_Tab_Menu/details.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 37+ Great Ajax, CSS Tab-Based Interfaces &#8211; Tasarımcılar için &#124; Gazetem Sanat</title>
		<link>http://www.andrewsellick.com/64/fancy-sliding-tab-menu-v2/comment-page-2#comment-56907</link>
		<dc:creator>37+ Great Ajax, CSS Tab-Based Interfaces &#8211; Tasarımcılar için &#124; Gazetem Sanat</dc:creator>
		<pubDate>Sun, 18 Oct 2009 19:49:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewsellick.com/64/fancy-sliding-tab-menu-v2#comment-56907</guid>
		<description>[...] 15) Fancy Sliding Tab Menu [...]</description>
		<content:encoded><![CDATA[<p>[...] 15) Fancy Sliding Tab Menu [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Analiz Büro Makineleri Sarf Malzemeleri</title>
		<link>http://www.andrewsellick.com/64/fancy-sliding-tab-menu-v2/comment-page-2#comment-56885</link>
		<dc:creator>Analiz Büro Makineleri Sarf Malzemeleri</dc:creator>
		<pubDate>Fri, 25 Sep 2009 12:10:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewsellick.com/64/fancy-sliding-tab-menu-v2#comment-56885</guid>
		<description>arka plana nasıl değişik resimler atabiliriz..:?</description>
		<content:encoded><![CDATA[<p>arka plana nasıl değişik resimler atabiliriz..:?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: brofish</title>
		<link>http://www.andrewsellick.com/64/fancy-sliding-tab-menu-v2/comment-page-2#comment-56861</link>
		<dc:creator>brofish</dc:creator>
		<pubDate>Thu, 27 Aug 2009 01:28:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.andrewsellick.com/64/fancy-sliding-tab-menu-v2#comment-56861</guid>
		<description>hey! Thanks so much for this. I really enjoyed it and if its fine with you i&#039;ll link you up in my web as a good source for scripts with class. You rock!</description>
		<content:encoded><![CDATA[<p>hey! Thanks so much for this. I really enjoyed it and if its fine with you i&#8217;ll link you up in my web as a good source for scripts with class. You rock!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 1.082 seconds -->
