<?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: Sliding Jquery Menu</title>
	<atom:link href="http://hv-designs.co.uk/2009/02/17/sliding-jquery-menu/feed/" rel="self" type="application/rss+xml" />
	<link>http://hv-designs.co.uk/2009/02/17/sliding-jquery-menu/</link>
	<description></description>
	<lastBuildDate>Wed, 17 Mar 2010 14:29:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: chakwithu</title>
		<link>http://hv-designs.co.uk/2009/02/17/sliding-jquery-menu/comment-page-3/#comment-16512</link>
		<dc:creator>chakwithu</dc:creator>
		<pubDate>Wed, 10 Mar 2010 06:07:21 +0000</pubDate>
		<guid isPermaLink="false">http://hv-designs.co.uk/?p=918#comment-16512</guid>
		<description>NOT working in IE 6</description>
		<content:encoded><![CDATA[<p>NOT working in IE 6</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kevin</title>
		<link>http://hv-designs.co.uk/2009/02/17/sliding-jquery-menu/comment-page-3/#comment-16484</link>
		<dc:creator>kevin</dc:creator>
		<pubDate>Tue, 09 Mar 2010 21:11:53 +0000</pubDate>
		<guid isPermaLink="false">http://hv-designs.co.uk/?p=918#comment-16484</guid>
		<description>@kevin and anyone who wants the menu to close when the mouse exits the menu area:

$(document).ready(function () {
    $(&#039;img.menu_class&#039;).click(function () {
		$(&#039;ul.the_menu&#039;).slideToggle(&#039;medium&#039;);
    })
	$(&#039;#button&#039;).mouseleave(function(){
      $(&#039;ul.the_menu&#039;).slideToggle(&#039;medium&#039;);
    });
;
});</description>
		<content:encoded><![CDATA[<p>@kevin and anyone who wants the menu to close when the mouse exits the menu area:</p>
<p>$(document).ready(function () {<br />
    $(&#8216;img.menu_class&#8217;).click(function () {<br />
		$(&#8216;ul.the_menu&#8217;).slideToggle(&#8216;medium&#8217;);<br />
    })<br />
	$(&#8216;#button&#8217;).mouseleave(function(){<br />
      $(&#8216;ul.the_menu&#8217;).slideToggle(&#8216;medium&#8217;);<br />
    });<br />
;<br />
});</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://hv-designs.co.uk/2009/02/17/sliding-jquery-menu/comment-page-3/#comment-16470</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Tue, 09 Mar 2010 16:54:21 +0000</pubDate>
		<guid isPermaLink="false">http://hv-designs.co.uk/?p=918#comment-16470</guid>
		<description>Hey Guys, Try using the #container as a click event, I used it to get the functionality I wanted. Here&#039;s some source..

$(document).ready(function() {
    $(&#039;img.menu_class&#039;).mouseover(function() {
        $(&#039;ul.the_menu&#039;).slideDown(&#039;medium&#039;);
        });
        $(&#039;#container&#039;).click(function() {
        $(&#039;ul.the_menu&#039;).slideUp(&#039;medium&#039;);
        });
});

Awesome Menu by the way ;)</description>
		<content:encoded><![CDATA[<p>Hey Guys, Try using the #container as a click event, I used it to get the functionality I wanted. Here&#8217;s some source..</p>
<p>$(document).ready(function() {<br />
    $(&#8216;img.menu_class&#8217;).mouseover(function() {<br />
        $(&#8216;ul.the_menu&#8217;).slideDown(&#8216;medium&#8217;);<br />
        });<br />
        $(&#8216;#container&#8217;).click(function() {<br />
        $(&#8216;ul.the_menu&#8217;).slideUp(&#8216;medium&#8217;);<br />
        });<br />
});</p>
<p>Awesome Menu by the way ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 36?????JQuery???? &#124; TechTrack- ????</title>
		<link>http://hv-designs.co.uk/2009/02/17/sliding-jquery-menu/comment-page-3/#comment-16387</link>
		<dc:creator>36?????JQuery???? &#124; TechTrack- ????</dc:creator>
		<pubDate>Fri, 05 Mar 2010 10:43:53 +0000</pubDate>
		<guid isPermaLink="false">http://hv-designs.co.uk/?p=918#comment-16387</guid>
		<description>[...] 6.Jquery???? [...]</description>
		<content:encoded><![CDATA[<p>[...] 6.Jquery???? [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NYXX</title>
		<link>http://hv-designs.co.uk/2009/02/17/sliding-jquery-menu/comment-page-3/#comment-16327</link>
		<dc:creator>NYXX</dc:creator>
		<pubDate>Wed, 03 Mar 2010 05:50:15 +0000</pubDate>
		<guid isPermaLink="false">http://hv-designs.co.uk/?p=918#comment-16327</guid>
		<description>Awesome tutorial. Very helpful. I had one additional question how am I able to place this button on a horizontal image. Example www.notcot.org has a nice top navigation bar. How would I be able to place this on a bar similar to that without any text and having a long horizontal black image.</description>
		<content:encoded><![CDATA[<p>Awesome tutorial. Very helpful. I had one additional question how am I able to place this button on a horizontal image. Example <a href="http://www.notcot.org" rel="nofollow">http://www.notcot.org</a> has a nice top navigation bar. How would I be able to place this on a bar similar to that without any text and having a long horizontal black image.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 25 Excellent jQuery Tutorials for Navigation Menu &#171; AcrisDesign &#8211; Web Design Resources and Inspiration</title>
		<link>http://hv-designs.co.uk/2009/02/17/sliding-jquery-menu/comment-page-3/#comment-16280</link>
		<dc:creator>25 Excellent jQuery Tutorials for Navigation Menu &#171; AcrisDesign &#8211; Web Design Resources and Inspiration</dc:creator>
		<pubDate>Mon, 01 Mar 2010 11:43:40 +0000</pubDate>
		<guid isPermaLink="false">http://hv-designs.co.uk/?p=918#comment-16280</guid>
		<description>[...] Sliding Jquery Menu [...]</description>
		<content:encoded><![CDATA[<p>[...] Sliding Jquery Menu [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sliding Jquery Menu</title>
		<link>http://hv-designs.co.uk/2009/02/17/sliding-jquery-menu/comment-page-3/#comment-16260</link>
		<dc:creator>Sliding Jquery Menu</dc:creator>
		<pubDate>Sun, 28 Feb 2010 15:52:44 +0000</pubDate>
		<guid isPermaLink="false">http://hv-designs.co.uk/?p=918#comment-16260</guid>
		<description>[...] Tutorial Tutorial Page [...]</description>
		<content:encoded><![CDATA[<p>[...] Tutorial Tutorial Page [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 45?jQuery???????? _ ????_??????????????????????</title>
		<link>http://hv-designs.co.uk/2009/02/17/sliding-jquery-menu/comment-page-3/#comment-16218</link>
		<dc:creator>45?jQuery???????? _ ????_??????????????????????</dc:creator>
		<pubDate>Fri, 26 Feb 2010 06:00:49 +0000</pubDate>
		<guid isPermaLink="false">http://hv-designs.co.uk/?p=918#comment-16218</guid>
		<description>[...] jQuery ????? &#124; Demo ??????????????????????????????????????PSDtuts??+???????????????????????? ?????????????. [...]</description>
		<content:encoded><![CDATA[<p>[...] jQuery ????? | Demo ??????????????????????????????????????PSDtuts??+???????????????????????? ?????????????. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stiques &#187; Blog Archive &#187; 13 Best jQuery Menus to Rock your Website</title>
		<link>http://hv-designs.co.uk/2009/02/17/sliding-jquery-menu/comment-page-3/#comment-16196</link>
		<dc:creator>stiques &#187; Blog Archive &#187; 13 Best jQuery Menus to Rock your Website</dc:creator>
		<pubDate>Wed, 24 Feb 2010 17:25:15 +0000</pubDate>
		<guid isPermaLink="false">http://hv-designs.co.uk/?p=918#comment-16196</guid>
		<description>[...] Demo &#124; Tutorial [...]</description>
		<content:encoded><![CDATA[<p>[...] Demo | Tutorial [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://hv-designs.co.uk/2009/02/17/sliding-jquery-menu/comment-page-3/#comment-15954</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Tue, 09 Feb 2010 22:15:51 +0000</pubDate>
		<guid isPermaLink="false">http://hv-designs.co.uk/?p=918#comment-15954</guid>
		<description>Thanks!

Note: By adding the declarations position:absolute; and z-index:500; to the .the_menu selector, you can fix the menu&#039;s overlapping issue.</description>
		<content:encoded><![CDATA[<p>Thanks!</p>
<p>Note: By adding the declarations position:absolute; and z-index:500; to the .the_menu selector, you can fix the menu&#8217;s overlapping issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Multi-level Drop Down Menus : swapnil</title>
		<link>http://hv-designs.co.uk/2009/02/17/sliding-jquery-menu/comment-page-3/#comment-15910</link>
		<dc:creator>Multi-level Drop Down Menus : swapnil</dc:creator>
		<pubDate>Mon, 08 Feb 2010 12:18:06 +0000</pubDate>
		<guid isPermaLink="false">http://hv-designs.co.uk/?p=918#comment-15910</guid>
		<description>[...] Sliding Jquery Menu &#8211; hv designs [...]</description>
		<content:encoded><![CDATA[<p>[...] Sliding Jquery Menu &#8211; hv designs [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 45? jQuery???????? &#171; SonicHTML &#8211; ??? HTML+CSS ??</title>
		<link>http://hv-designs.co.uk/2009/02/17/sliding-jquery-menu/comment-page-3/#comment-15865</link>
		<dc:creator>45? jQuery???????? &#171; SonicHTML &#8211; ??? HTML+CSS ??</dc:creator>
		<pubDate>Fri, 05 Feb 2010 06:14:47 +0000</pubDate>
		<guid isPermaLink="false">http://hv-designs.co.uk/?p=918#comment-15865</guid>
		<description>[...] ??jQuery???  ?? [...]</description>
		<content:encoded><![CDATA[<p>[...] ??jQuery???  ?? [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
