<?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, 28 Aug 2010 17:45:37 +0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<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>
	<item>
		<title>By: ronggur</title>
		<link>http://sandbox.ronggur.com/2009/01/25/jquery-tutorial-horizontal-animated-menu/comment-page-1/#comment-476</link>
		<dc:creator>ronggur</dc:creator>
		<pubDate>Sat, 26 Dec 2009 19:30:15 +0000</pubDate>
		<guid isPermaLink="false">http://sandbox.ronggur.com/?p=42#comment-476</guid>
		<description>@Nicolas : Sure, you can add inside/between this script

$(&quot;li&quot;).hover( function(){

}

or maybe you can change &lt;p&gt; tag with &lt;a&gt; tag</description>
		<content:encoded><![CDATA[<p>@Nicolas : Sure, you can add inside/between this script</p>
<p>$(&#8220;li&#8221;).hover( function(){</p>
<p>}</p>
<p>or maybe you can change &lt;p&gt; tag with &lt;a&gt; tag</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nicolas</title>
		<link>http://sandbox.ronggur.com/2009/01/25/jquery-tutorial-horizontal-animated-menu/comment-page-1/#comment-471</link>
		<dc:creator>Nicolas</dc:creator>
		<pubDate>Wed, 23 Dec 2009 23:22:18 +0000</pubDate>
		<guid isPermaLink="false">http://sandbox.ronggur.com/?p=42#comment-471</guid>
		<description>how can i had links in hte part that expands?

For what i have seen,
&lt;a href=&quot;#&quot; title=&quot;Go to the front page&quot; rel=&quot;nofollow&quot;&gt;Home&lt;/a&gt;

the part that expands is the one taged as title (DUH :P), but is there a way in which i can include for example more links when hovered?

Regads!</description>
		<content:encoded><![CDATA[<p>how can i had links in hte part that expands?</p>
<p>For what i have seen,<br />
<a href="#" title="Go to the front page" rel="nofollow">Home</a></p>
<p>the part that expands is the one taged as title (DUH <img src='http://sandbox.ronggur.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ), but is there a way in which i can include for example more links when hovered?</p>
<p>Regads!</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-292</link>
		<dc:creator>ronggur</dc:creator>
		<pubDate>Fri, 20 Nov 2009 16:50:49 +0000</pubDate>
		<guid isPermaLink="false">http://sandbox.ronggur.com/?p=42#comment-292</guid>
		<description>Thanks Arley for your note</description>
		<content:encoded><![CDATA[<p>Thanks Arley for your note</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ArleyM</title>
		<link>http://sandbox.ronggur.com/2009/01/25/jquery-tutorial-horizontal-animated-menu/comment-page-1/#comment-290</link>
		<dc:creator>ArleyM</dc:creator>
		<pubDate>Fri, 13 Nov 2009 17:15:18 +0000</pubDate>
		<guid isPermaLink="false">http://sandbox.ronggur.com/?p=42#comment-290</guid>
		<description>!important: Note that @Shropshire&#039;s code needs a find and replace done on the (&quot;) quotation marks and the paragraph tags need to be put back into the line: 

$(this).find(&quot;a&quot;).after(&quot;&quot;+description+&quot;&quot;)

note, I added spaces in the P tags to prevent the comment system from rendering them.

Great work!</description>
		<content:encoded><![CDATA[<p>!important: Note that @Shropshire&#8217;s code needs a find and replace done on the (&#8220;) quotation marks and the paragraph tags need to be put back into the line: </p>
<p>$(this).find(&#8220;a&#8221;).after(&#8220;&#8221;+description+&#8221;")</p>
<p>note, I added spaces in the P tags to prevent the comment system from rendering them.</p>
<p>Great work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SkyTeam &#187; Blog Archive &#187; Horizontal Animated Menu</title>
		<link>http://sandbox.ronggur.com/2009/01/25/jquery-tutorial-horizontal-animated-menu/comment-page-1/#comment-256</link>
		<dc:creator>SkyTeam &#187; Blog Archive &#187; Horizontal Animated Menu</dc:creator>
		<pubDate>Sun, 04 Oct 2009 10:11:59 +0000</pubDate>
		<guid isPermaLink="false">http://sandbox.ronggur.com/?p=42#comment-256</guid>
		<description>[...] http://sandbox.ronggur.com/2009/01/25/jquery-tutorial-horizontal-animated-menu/  view plaincopy to clipboardprint? [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://sandbox.ronggur.com/2009/01/25/jquery-tutorial-horizontal-animated-menu/" rel="nofollow">http://sandbox.ronggur.com/2009/01/25/jquery-tutorial-horizontal-animated-menu/</a>  view plaincopy to clipboardprint? [...]</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-227</link>
		<dc:creator>ronggur</dc:creator>
		<pubDate>Sat, 05 Sep 2009 04:05:40 +0000</pubDate>
		<guid isPermaLink="false">http://sandbox.ronggur.com/?p=42#comment-227</guid>
		<description>marii om don, terimakasih sudah berkunjung :D.. sering2 datang ya, akan ada beberapa artikel yg sedang dipersiapkan *promosii*</description>
		<content:encoded><![CDATA[<p>marii om don, terimakasih sudah berkunjung <img src='http://sandbox.ronggur.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> .. sering2 datang ya, akan ada beberapa artikel yg sedang dipersiapkan *promosii*</p>
]]></content:encoded>
	</item>
</channel>
</rss>
