<?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: jQuery Tutorial : Horizontal Animated Menu</title>
	<atom:link href="http://sandbox.ronggur.com/2009/01/25/jquery-tutorial-horizontal-animated-menu/feed/" rel="self" type="application/rss+xml" />
	<link>http://sandbox.ronggur.com/2009/01/25/jquery-tutorial-horizontal-animated-menu/</link>
	<description>Ronggur Hutasuhut Playground</description>
	<lastBuildDate>Sat, 04 Feb 2012 12:47:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Felix Widjaja</title>
		<link>http://sandbox.ronggur.com/2009/01/25/jquery-tutorial-horizontal-animated-menu/comment-page-1/#comment-764</link>
		<dc:creator>Felix Widjaja</dc:creator>
		<pubDate>Tue, 24 May 2011 07:58:05 +0000</pubDate>
		<guid isPermaLink="false">http://sandbox.ronggur.com/?p=42#comment-764</guid>
		<description>NICE MENU!</description>
		<content:encoded><![CDATA[<p>NICE MENU!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: doli</title>
		<link>http://sandbox.ronggur.com/2009/01/25/jquery-tutorial-horizontal-animated-menu/comment-page-1/#comment-716</link>
		<dc:creator>doli</dc:creator>
		<pubDate>Thu, 31 Mar 2011 09:35:58 +0000</pubDate>
		<guid isPermaLink="false">http://sandbox.ronggur.com/?p=42#comment-716</guid>
		<description>thanks bro...</description>
		<content:encoded><![CDATA[<p>thanks bro&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vazi</title>
		<link>http://sandbox.ronggur.com/2009/01/25/jquery-tutorial-horizontal-animated-menu/comment-page-1/#comment-575</link>
		<dc:creator>Vazi</dc:creator>
		<pubDate>Mon, 18 Oct 2010 09:05:27 +0000</pubDate>
		<guid isPermaLink="false">http://sandbox.ronggur.com/?p=42#comment-575</guid>
		<description>Awesome thing, and I thank you for that. The only problem is... it&#039;s not working on IE (7). Though it works perfectly on Firefox and Opera. Any solutions, please?</description>
		<content:encoded><![CDATA[<p>Awesome thing, and I thank you for that. The only problem is&#8230; it&#8217;s not working on IE (7). Though it works perfectly on Firefox and Opera. Any solutions, please?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ronggur</title>
		<link>http://sandbox.ronggur.com/2009/01/25/jquery-tutorial-horizontal-animated-menu/comment-page-1/#comment-564</link>
		<dc:creator>ronggur</dc:creator>
		<pubDate>Tue, 28 Sep 2010 18:47:40 +0000</pubDate>
		<guid isPermaLink="false">http://sandbox.ronggur.com/?p=42#comment-564</guid>
		<description>Thanks for stopping by and leave comment</description>
		<content:encoded><![CDATA[<p>Thanks for stopping by and leave comment</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maxwell</title>
		<link>http://sandbox.ronggur.com/2009/01/25/jquery-tutorial-horizontal-animated-menu/comment-page-1/#comment-562</link>
		<dc:creator>Maxwell</dc:creator>
		<pubDate>Tue, 28 Sep 2010 09:26:58 +0000</pubDate>
		<guid isPermaLink="false">http://sandbox.ronggur.com/?p=42#comment-562</guid>
		<description>I was looking for this sort of tutorial for long time and finally got it.. thanks for sharing awesome post</description>
		<content:encoded><![CDATA[<p>I was looking for this sort of tutorial for long time and finally got it.. thanks for sharing awesome post</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: animation menu using css and jQuery &#124; CSS &#38; JQuery Sample</title>
		<link>http://sandbox.ronggur.com/2009/01/25/jquery-tutorial-horizontal-animated-menu/comment-page-1/#comment-554</link>
		<dc:creator>animation menu using css and jQuery &#124; CSS &#38; JQuery Sample</dc:creator>
		<pubDate>Tue, 14 Sep 2010 02:41:20 +0000</pubDate>
		<guid isPermaLink="false">http://sandbox.ronggur.com/?p=42#comment-554</guid>
		<description>[...] View &#124;Tutorial&#124; [...]</description>
		<content:encoded><![CDATA[<p>[...] View |Tutorial| [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daley</title>
		<link>http://sandbox.ronggur.com/2009/01/25/jquery-tutorial-horizontal-animated-menu/comment-page-1/#comment-529</link>
		<dc:creator>Daley</dc:creator>
		<pubDate>Wed, 14 Jul 2010 14:41:44 +0000</pubDate>
		<guid isPermaLink="false">http://sandbox.ronggur.com/?p=42#comment-529</guid>
		<description>Hi,
First of all I&#039;d like to say thanks for a great tutorial. 
My first thought once I had it running however, was that as a user you would expect to click anywhere on the black rectangle to navigate to that page yet in the example you give the users would have to click on the text itself (from within the &lt;a&gt; tags) every time.

My simple solution is below as i think others may find it useful.

So the jQuery would require;

//This changes the cursor to the hand pointer we expect when we roll over a link

$(&quot;li&quot;).hover(function(){
					
		$(this).css(&quot;cursor&quot;,&quot;pointer&quot;);
});

//This then drills down into the li tag to find the a tag and then use the a tags href value
$(&quot;li&quot;).click(function(){   
						   window.location = $(this).children(&quot;a&quot;).attr(&quot;href&quot;);
						  
});

//The html would then have to include a proper href value for the jQuery to find and use eg.

&lt;a href=&quot;http://www.google.com&quot; title=&quot;Go to front page&quot; rel=&quot;nofollow&quot;&gt;Home&lt;/a&gt;
&lt;a href=&quot;http://www.yahoo.co.uk&quot; title=&quot;Want to know more about us&quot; rel=&quot;nofollow&quot;&gt;About Us&lt;/a&gt;
&lt;a href=&quot;http://www.msdn.com&quot; title=&quot;Keep in touch with us, call any time you want&quot; rel=&quot;nofollow&quot;&gt;Contact Us&lt;/a&gt;


As a result when you roll over any of the black rectangles the cursor changes to reflect a hyperlink pointer and then a click anywhere on that rectangle causes the navigation to fire.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
First of all I&#8217;d like to say thanks for a great tutorial.<br />
My first thought once I had it running however, was that as a user you would expect to click anywhere on the black rectangle to navigate to that page yet in the example you give the users would have to click on the text itself (from within the <a> tags) every time.</p>
<p>My simple solution is below as i think others may find it useful.</p>
<p>So the jQuery would require;</p>
<p>//This changes the cursor to the hand pointer we expect when we roll over a link</p>
<p>$(&#8220;li&#8221;).hover(function(){</p>
<p>		$(this).css(&#8220;cursor&#8221;,&#8221;pointer&#8221;);<br />
});</p>
<p>//This then drills down into the li tag to find the a tag and then use the a tags href value<br />
$(&#8220;li&#8221;).click(function(){<br />
						   window.location = $(this).children(&#8220;a&#8221;).attr(&#8220;href&#8221;);</p>
<p>});</p>
<p>//The html would then have to include a proper href value for the jQuery to find and use eg.</p>
<p></a><a href="http://www.google.com" title="Go to front page" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/www.google.com?referer=');">Home</a><br />
<a href="http://www.yahoo.co.uk" title="Want to know more about us" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/www.yahoo.co.uk?referer=');">About Us</a><br />
<a href="http://www.msdn.com" title="Keep in touch with us, call any time you want" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/www.msdn.com?referer=');">Contact Us</a></p>
<p>As a result when you roll over any of the black rectangles the cursor changes to reflect a hyperlink pointer and then a click anywhere on that rectangle causes the navigation to fire.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ronggur</title>
		<link>http://sandbox.ronggur.com/2009/01/25/jquery-tutorial-horizontal-animated-menu/comment-page-1/#comment-500</link>
		<dc:creator>ronggur</dc:creator>
		<pubDate>Thu, 29 Apr 2010 16:38:50 +0000</pubDate>
		<guid isPermaLink="false">http://sandbox.ronggur.com/?p=42#comment-500</guid>
		<description>@sajan : thanks

@Micah : the easiest way, you can remove/remark this part

$(this).find(&quot;a&quot;).after(&quot;&quot;+description+&quot;&quot;)

and add manually description you want in </description>
		<content:encoded><![CDATA[<p>@sajan : thanks</p>
<p>@Micah : the easiest way, you can remove/remark this part</p>
<p>$(this).find(&#8220;a&#8221;).after(&#8220;&#8221;+description+&#8221;")</p>
<p>and add manually description you want in</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Micah</title>
		<link>http://sandbox.ronggur.com/2009/01/25/jquery-tutorial-horizontal-animated-menu/comment-page-1/#comment-499</link>
		<dc:creator>Micah</dc:creator>
		<pubDate>Thu, 29 Apr 2010 03:09:50 +0000</pubDate>
		<guid isPermaLink="false">http://sandbox.ronggur.com/?p=42#comment-499</guid>
		<description>Hi this is one of the best horizontal menus i&#039;ve seen as it validates correct html.
I have one question. How do I use text in the li and not in the title field.
I tried the advice you gave to nicolas but couldn&#039;t get it working
I would really appreciate the help, Thanks</description>
		<content:encoded><![CDATA[<p>Hi this is one of the best horizontal menus i&#8217;ve seen as it validates correct html.<br />
I have one question. How do I use text in the li and not in the title field.<br />
I tried the advice you gave to nicolas but couldn&#8217;t get it working<br />
I would really appreciate the help, Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sajan kota</title>
		<link>http://sandbox.ronggur.com/2009/01/25/jquery-tutorial-horizontal-animated-menu/comment-page-1/#comment-496</link>
		<dc:creator>sajan kota</dc:creator>
		<pubDate>Sun, 14 Mar 2010 08:51:55 +0000</pubDate>
		<guid isPermaLink="false">http://sandbox.ronggur.com/?p=42#comment-496</guid>
		<description>Great Tutorials. Keep up the good work.</description>
		<content:encoded><![CDATA[<p>Great Tutorials. Keep up the good work.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: sandbox.ronggur.com @ 2012-02-04 23:36:22 -->
