<?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: leichtgewichtiges, barrierearmes, generisches Hover-Plugin für jQuery</title>
	<atom:link href="http://www.protofunc.com/2009/03/29/leichtgewichtiges-barrierearmes-generisches-hover-plugin-fur-jquery/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.protofunc.com/2009/03/29/leichtgewichtiges-barrierearmes-generisches-hover-plugin-fur-jquery/</link>
	<description></description>
	<lastBuildDate>Sat, 28 Aug 2010 14:35:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: stinki</title>
		<link>http://www.protofunc.com/2009/03/29/leichtgewichtiges-barrierearmes-generisches-hover-plugin-fur-jquery/comment-page-1/#comment-245</link>
		<dc:creator>stinki</dc:creator>
		<pubDate>Sat, 20 Feb 2010 22:26:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.protofunc.com/?p=25#comment-245</guid>
		<description>&lt;code&gt;
$(function(){
				
				$(&#039;#navmenu-v li&#039;)
					.inOut(function(){
						
						$(this).children(&quot;ul&quot;).animate({
                            width: &#039;show&#039;,
                            opacity: &#039;show&#039;
                        }, &#039;slow&#039;);
				        					
					}, function(){
						
						$(this).children(&#039;ul&#039;).animate({
                            width: &#039;hide&#039;,
                            opacity: &#039;hide&#039;
                        }, &#039;medium&#039;);
                        
					
					}, {mouseDelay: 250});
					
			});
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p><code><br />
$(function(){</p>
<p>				$('#navmenu-v li')<br />
					.inOut(function(){</p>
<p>						$(this).children("ul").animate({<br />
                            width: 'show',<br />
                            opacity: 'show'<br />
                        }, 'slow');</p>
<p>					}, function(){</p>
<p>						$(this).children('ul').animate({<br />
                            width: 'hide',<br />
                            opacity: 'hide'<br />
                        }, 'medium');</p>
<p>					}, {mouseDelay: 250});</p>
<p>			});<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stinki</title>
		<link>http://www.protofunc.com/2009/03/29/leichtgewichtiges-barrierearmes-generisches-hover-plugin-fur-jquery/comment-page-1/#comment-244</link>
		<dc:creator>stinki</dc:creator>
		<pubDate>Sat, 20 Feb 2010 22:25:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.protofunc.com/?p=25#comment-244</guid>
		<description>ok, habs doch noch hinbekommen. hatte nciht das richtige element getroffen aber mit .children(&#039;ul&#039;) funktioniert es.

&lt;code&gt;
$(function(){
				
				$(&#039;#navmenu-v li&#039;)
					.inOut(function(){
						
						$(this).children(&quot;ul&quot;).animate({
                            width: &#039;show&#039;,
                            opacity: &#039;show&#039;
                        }, &#039;slow&#039;);
				        					
					}, function(){
						
						$(this).children(&#039;ul&#039;).animate({
                            width: &#039;hide&#039;,
                            opacity: &#039;hide&#039;
                        }, &#039;medium&#039;);
                        
					
					}, {mouseDelay: 250});
					
			});
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>ok, habs doch noch hinbekommen. hatte nciht das richtige element getroffen aber mit .children(&#8216;ul&#8217;) funktioniert es.</p>
<p><code><br />
$(function(){</p>
<p>				$('#navmenu-v li')<br />
					.inOut(function(){</p>
<p>						$(this).children("ul").animate({<br />
                            width: 'show',<br />
                            opacity: 'show'<br />
                        }, 'slow');</p>
<p>					}, function(){</p>
<p>						$(this).children('ul').animate({<br />
                            width: 'hide',<br />
                            opacity: 'hide'<br />
                        }, 'medium');</p>
<p>					}, {mouseDelay: 250});</p>
<p>			});<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stinki</title>
		<link>http://www.protofunc.com/2009/03/29/leichtgewichtiges-barrierearmes-generisches-hover-plugin-fur-jquery/comment-page-1/#comment-243</link>
		<dc:creator>stinki</dc:creator>
		<pubDate>Sat, 20 Feb 2010 13:52:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.protofunc.com/?p=25#comment-243</guid>
		<description>hi, bin gerade auf dein plugin gestossen. funktioniert soweit super, danke!
ich möchte jetzt aber gern noch eine Animation hinzufügen. also die nächste ebene soll sich von links nach rechts einschieben. 

habe es mit animate() versucht aber leider ohne erfolg. hast du einen ansatz für mich?

vielen Dank und viele Grüße,
stinki</description>
		<content:encoded><![CDATA[<p>hi, bin gerade auf dein plugin gestossen. funktioniert soweit super, danke!<br />
ich möchte jetzt aber gern noch eine Animation hinzufügen. also die nächste ebene soll sich von links nach rechts einschieben. </p>
<p>habe es mit animate() versucht aber leider ohne erfolg. hast du einen ansatz für mich?</p>
<p>vielen Dank und viele Grüße,<br />
stinki</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert</title>
		<link>http://www.protofunc.com/2009/03/29/leichtgewichtiges-barrierearmes-generisches-hover-plugin-fur-jquery/comment-page-1/#comment-135</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Thu, 09 Apr 2009 15:19:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.protofunc.com/?p=25#comment-135</guid>
		<description>Hey Alex!
Wieso findet man deinen js.packager nirgends im netz? :)
i want to use it!</description>
		<content:encoded><![CDATA[<p>Hey Alex!<br />
Wieso findet man deinen js.packager nirgends im netz? <img src='http://www.protofunc.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
i want to use it!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
