<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Narga &#187; drop-down menu</title>
	<atom:link href="http://www.narga.net/tag/drop-down-menu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.narga.net</link>
	<description>Narga - Ideas and inspiration in my opinion!</description>
	<lastBuildDate>Wed, 18 Jan 2012 20:20:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<atom:link rel='hub' href='http://www.narga.net/?pushpress=hub'/>
		<item>
		<title>Make your own WordPress Drop-Down menu with CSS and jQuery</title>
		<link>http://www.narga.net/make-your-own-wordpress-drop-down-menu-with-css-and-jquery/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=make-your-own-wordpress-drop-down-menu-with-css-and-jquery</link>
		<comments>http://www.narga.net/make-your-own-wordpress-drop-down-menu-with-css-and-jquery/#comments</comments>
		<pubDate>Wed, 08 Dec 2010 15:30:59 +0000</pubDate>
		<dc:creator>Narga</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[drop-down menu]]></category>

		<guid isPermaLink="false">http://www.narga.net/?p=1115</guid>
		<description><![CDATA[A drop down menu is often your best means of keeping the navigation  simple and uncluttered, that can offer your theme and users 2 new things. One, add a nice new type of effect to enhance your theme. Two, allow the users to find things more easily. There are a few plugins that you can use to  achieve this, but in this post, I'll show you how to make your own Wordpress Drop-Down menu with CSS and jQuery and WordPress’s standard source code]]></description>
			<content:encoded><![CDATA[<p>A drop down menu is often your best means of keeping the navigation  simple and uncluttered, that can offer your theme and users 2 new things. One, add a nice new type of effect to enhance your theme. Two, allow the users to find things more easily. There are a few plugins that you can use to  make this, but in this post, I'll show you how to make your own WordPress Drop-Down menu with CSS and jQuery and WordPress’s standard <code>wp_list_pages, wp_nav_menu, wp_list_categories</code><br />
<div id="attachment_2489" class="wp-caption aligncenter" style="width: 530px"><img src="http://www.narga.net/wordpress/wp-content/uploads/2010/12/Make-your-own-Wordpress-Drop-Down-menu-520x170.png" alt="Make your own WordPress Drop-Down menu" width="520" height="170" class="size-medium wp-image-2489" /><p class="wp-caption-text">Make your own WordPress Drop-Down menu</p></div><br />
The aim of this short tutorial is help you build a simple multi-level  drop-down menu in your WordPress theme using jQuery’s JavaScript library  to make sure cross-browser compatibility.</p>
<p>To get started with this tutorial, you'll need to have a WordPress  website up and running and a willingness to alter your theme files. Once  that's squared away you're ready to rock!</p>
<p><span id="more-1115"></span></p>
<h3>The Standard WordPress navigation layout</h3>
<p>Before we get into making drop downs, we need to take a look at the way WordPress layouts it’s navigation.</p>
<pre class="brush: php; title: ; notranslate">&lt;ul id=&quot;nav&quot;&gt;
	    &lt;?php wp_list_categories('title_li=&amp;sort_column=menu_order'); ?&gt;
&lt;/ul&gt;</pre>
<p>You might also want to include a home link. You can add this manually like so:<br />
view source<br />
print?</p>
<pre class="brush: php; title: ; notranslate">&lt;ul id=&quot;nav&quot;&gt;
	    &lt;li&gt;&lt;a href=&quot;&lt;? bloginfo('siteurl'); ?&gt;&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
	    &lt;?php wp_list_categories('title_li=&amp;sort_column=menu_order'); ?&gt;
&lt;/ul&gt;</pre>
<p>Both <code>wp_list_pages</code> and <code>wp_nav_menu</code> lay out their menus pretty much exactly the same, besides different class names, so we’ll just take a look at <code>wp_nav_menu</code>'s printed code:</p>
<pre class="brush: xml; title: ; notranslate">&lt;ul class=&quot;menu&quot;&gt;
	&lt;li class=&quot;cat-item cat-item-6&quot;&gt;&lt;a href=&quot;http://localhost/wordpress/category/long-category/&quot; title=&quot;View all posts filed under Long Category&quot;&gt;Long Category&lt;/a&gt;
	&lt;ul class='children'&gt;
		&lt;li class=&quot;cat-item cat-item-7&quot;&gt;&lt;a href=&quot;http://localhost/wordpress/category/long-category/sub-long-category/&quot; title=&quot;View all posts filed under Sub Long Category&quot;&gt;Sub Long Category&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
	&lt;li class=&quot;cat-item cat-item-1&quot;&gt;&lt;a href=&quot;http://localhost/wordpress/category/uncategorized/&quot; title=&quot;View all posts filed under Uncategorized&quot;&gt;Uncategorized&lt;/a&gt;
	&lt;ul class='children'&gt;
		&lt;li class=&quot;cat-item cat-item-4&quot;&gt;&lt;a href=&quot;http://localhost/wordpress/category/uncategorized/subcategories/&quot; title=&quot;View all posts filed under SubCategories&quot;&gt;SubCategories&lt;/a&gt;&lt;/li&gt;
	&lt;li class=&quot;cat-item cat-item-3&quot;&gt;&lt;a href=&quot;http://localhost/wordpress/category/uncategorized/subcategorized/&quot; title=&quot;View all posts filed under Subcategorized&quot;&gt;Subcategorized&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
&lt;/ul&gt;
</pre>
<p>As you can see, WordPress neatly (well neat besides all the classes) layouts out the menu in a nice semantic list, with the children of the navigation nested inside of it’s parent li. This allows us to use both CSS and/or jQuery to make our drop downs work!</p>
<h3>Styling the Navigation</h3>
<p>Now, let’s styling the navigator. We want our list items aligned horizontally, and of course centered in the middle of the page.</p>
<pre class="brush: css; title: ; notranslate">	ul.menu { list-style: none outside none; padding: 0; margin: 0 10px; float: left; font-size: 13px;}
	ul.menu li { float: left; margin: 0; padding: 0 15px 0 0; position: relative; }
	ul.menu li a { padding: 9px 5px; color: rgb(255, 255, 255); display: block; text-decoration: none; float: left;  display: block;}
	ul.menu li:hover { background: #A6CB1B; }
	.current-cat { background: #8BBF47; }
	ul.menu li span { width: 11px; height: 10px; float: left; background: url('images/narga-sprites.png') -561px -78px no-repeat; margin: 11px 0 0 0;}
	ul.menu li ul.children {z-index:99; list-style: none outside none; position: absolute; left: 0; top: 31px; background: none repeat scroll 0% 0% rgb(51, 51, 51); margin: 0; padding: 0; display: none; float: left; width: 170px;  border-bottom: 1px solid #F8C92D;}
	ul.menu li ul.children li { margin: 0; padding: 0; clear: both; width: 170px; border-top: 1px solid #F8C92D;}
	html ul.menu li ul.children li a { float: left; width: 145px; background: url('images/narga-sprites.png') -578px -162px no-repeat #A6CB1B; padding-left: 20px; }
	html ul.menu li ul.children li a:hover { background: url('images/narga-sprites.png') -578px -162px no-repeat #7BAF36; }
</pre>
<h3>jQuery Animation the Navigation</h3>
<p>There’s also an easy way to make WordPress menus with jQuery drop downs. jQuery allows you to get a bit more fancy, by adding speeds and fades to the animation. It’s also useful if you’re still stuck supporting IE6.<br />
There’s a tiny piece of jQuery required to show/hide the drop down menu’s. From an accessibility point of view, you can link the top-level navigation item so that if JS is disabled, the user will still be able to get around your site. Here’s the script.</p>
<pre class="brush: jscript; title: ; notranslate">jQuery(document).ready(function() {
//Dropdown Menu
	if(!jQuery.browser.msie){// IE  - 2nd level Fix
		jQuery(&quot;ul.topnav&amp;quot.css({opacity:&quot;0.95&quot;});
	}
	jQuery(&quot;.topnav &gt; li &gt; ul&amp;quot.css({display: &quot;none&quot;}); // Opera Fix
	jQuery(&quot;ul.children&amp;quot.parent().append(&quot;&lt;span&gt;&lt;/span&gt;&quot; //Only shows drop down trigger when js is enabled - Adds empty span tag after ul.subnav
	jQuery(&quot;ul.menu li a&amp;quot.hover(function() { //When trigger is clicked...
		//Following events are applied to the subnav itself (moving subnav up and down)
		jQuery(this).parent().find(&quot;ul.children&amp;quot.slideDown('fast').show(400); //Drop down the subnav on hover
		jQuery(this).parent().hover(function() {
		}, function(){
			jQuery(this).parent().find(&quot;ul.children&amp;quot.slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
		});
		//Following events are applied to the trigger (Hover events for the trigger)
		}).hover(function() {
			jQuery(this).addClass(&quot;subhover&quot; //On hover over, add class &quot;subhover&quot;
		}, function(){	//On Hover Out
			jQuery(this).removeClass(&quot;subhover&quot; //On hover out, remove class &quot;subhover&quot;
	});

})
</pre>
<p><a href="http://www.narga.net/demo/MakeyourownWordpressDrop-DownMenu/index.html" class="demo" id="lightbox-iframe" title="Make your own WordPress Drop-Down menu with CSS and jQuery" >WordPress Drop-Down menu with CSS and jQuery <span>(View in Action)</span></a></p>
<h3>Finally!! A Drop Down WordPress Navigation Menu using CSS and jQuery!</h3>
<p>That's basically it, the example is about as stripped down as I could make it. Hopefully you'll have fun bending the code to your next project. Feel free to post comments if you have any questions about the tutorial. Happy coding!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.narga.net/make-your-own-wordpress-drop-down-menu-with-css-and-jquery/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>25 sexy jQuery Drop Down Multi Level Menu</title>
		<link>http://www.narga.net/sexy-jquery-drop-down-multi-level-menu/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sexy-jquery-drop-down-multi-level-menu</link>
		<comments>http://www.narga.net/sexy-jquery-drop-down-multi-level-menu/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 13:30:21 +0000</pubDate>
		<dc:creator>Narga</dc:creator>
				<category><![CDATA[Digest]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[drop-down menu]]></category>

		<guid isPermaLink="false">http://www.narga.net/?p=1639</guid>
		<description><![CDATA[Dropdown menus and menu bars have been heavily used since the early days of graphical user interfaces. Their use has become ubiquitous, and even expected, in desktop applications, and the web has quickly followed suit. There are lots of dropdown menus already out there. Here you’ll find 25 sexy jQuery and CSS based drop-down or just multi level menu tutorials with down loadable files and explanations as well.]]></description>
			<content:encoded><![CDATA[<p>Drop-down menus and menu bars have been heavily used since the early days of graphical user interfaces. Their use has become ubiquitous, and even expected, in desktop applications, and the web has quickly followed suit. There are lots of drop down menus already out there. Here you’ll find 25 sexy <a href="http://www.narga.net/jquery-a-new-kind-of-javascript-library/" title="jQuery" >jQuery</a> and CSS based drop-down or just multi level menu tutorials with down loadable files and explanations as well.<br />
<span id="more-1639"></span></p>
<h3>1. <a rel="nofollow" href="http://www.noupe.com/tutorial/drop-down-menu-jquery-css.html" title="Sexy Drop Down Menu w/ jQuery &amp; CSS" >Sexy Drop Down Menu w/ jQuery &amp; CSS</a></h3>
<p>In this tutorial you will learn how to create a sexy drop down menu that can also degrade gracefully.</p>
<div id="attachment_1643" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.narga.net/wp-content/uploads/2009/11/Sexy-Drop-Down-Menu-with-jQuery-and-CSS.jpg" ><img class="size-medium wp-image-1643" src="http://www.narga.net/wordpress/wp-content/uploads/2009/11/Sexy-Drop-Down-Menu-with-jQuery-and-CSS-500x291.jpg" alt="Sexy Drop Down Menu w/jQuery &amp; CSS" width="500" height="291" /></a><p class="wp-caption-text">Sexy Drop Down Menu w/jQuery &amp; CSS</p></div>
<h3>2. <a rel="nofollow" href="http://css-tricks.com/simple-jquery-dropdowns/" title="CSS-Tricks Simple jQuery Dropdowns" >CSS-Tricks Simple jQuery&nbsp;Dropdowns</a></h3>
<p>Very stripped down code and minimal styling, yet still drop down menu has all the functionality typically needed.</p>
<div id="attachment_1646" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.narga.net/wp-content/uploads/2009/11/Simple-jQuery-Dropdowns.jpg" ><img class="size-medium wp-image-1646" src="http://www.narga.net/wordpress/wp-content/uploads/2009/11/Simple-jQuery-Dropdowns-500x296.jpg" alt="Simple jQuery Dropdowns" width="500" height="296" /></a><p class="wp-caption-text">Simple jQuery Dropdowns</p></div>
<h3>3. <a rel="nofollow" href="http://www.webdesigndev.com/web-development/create-the-fanciest-dropdown-menu-you-ever-saw" title="The Fanciest Dropdown Menu" >The Fanciest Dropdown Menu</a></h3>
<p>Brian Cray teaches you how to create this stunning website drop down navigation menu. The drop down menu uses HTML, CSS and Javascript. You can also include the hoverIntent JQuery plugin for extra juicy effects.</p>
<div id="attachment_1648" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.narga.net/wp-content/uploads/2009/11/The-Fanciest-Dropdown-Menu.jpg" ><img class="size-medium wp-image-1648" src="http://www.narga.net/wordpress/wp-content/uploads/2009/11/The-Fanciest-Dropdown-Menu-500x138.jpg" alt="The Fanciest Dropdown Menu" width="500" height="138" /></a><p class="wp-caption-text">The Fanciest Dropdown Menu</p></div>
<h3>4. <a rel="nofollow" href="http://net.tutsplus.com/tutorials/javascript-ajax/a-different-top-navigation/" title="A Different Top Navigation Menu" >A Different Top Navigation Menu</a></h3>
<p>They will use jQuery to create a different multi-layered horizontal navigation system that is still intuitive enough for anyone to use for the first time.</p>
<div id="attachment_1651" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.narga.net/wp-content/uploads/2009/11/A-Different-Top-Navigation-Menu.png" ><img class="size-medium wp-image-1651" src="http://www.narga.net/wordpress/wp-content/uploads/2009/11/A-Different-Top-Navigation-Menu-500x344.png" alt="A Different Top Navigation Menu" width="500" height="344" /></a><p class="wp-caption-text">A Different Top Navigation Menu</p></div>
<h3>5. <a rel="nofollow" href="http://jdsharp.us/jQuery/plugins/jdMenu/" title="jdMenu Hierarchical Menu Plugin" >jdMenu Hierarchical Menu Plugin</a></h3>
<p>The jdMenu plugin for jQuery provides a clean, simple and elegant solution for creating hierarchical drop down menus for websites to web applications</p>
<div id="attachment_1653" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.narga.net/wp-content/uploads/2009/11/jdMenu-Hierarchical-Menu-Plugin.png" ><img class="size-medium wp-image-1653" src="http://www.narga.net/wordpress/wp-content/uploads/2009/11/jdMenu-Hierarchical-Menu-Plugin-500x116.png" alt="jdMenu Hierarchical Menu Plugin" width="500" height="116" /></a><p class="wp-caption-text">jdMenu Hierarchical Menu Plugin</p></div>
<h3>6. <a rel="nofollow" href="http://www.stunicholls.com/menu/pro_dropdown_2.html" title="Professional dropdown #2" >Professional dropdown #2</a></h3>
<p>This menu also styles the path taken through the menu so that it works in IE5.x and IE6 as well as IE7 and all other browsers. This is a little long-winded but necessary as IE5.5 and IE6 do not understand the child selector.</p>
<div id="attachment_1654" class="wp-caption aligncenter" style="width: 474px"><a href="http://www.narga.net/wp-content/uploads/2009/11/Professional-dropdown-2.png" ><img class="size-full wp-image-1654" src="http://www.narga.net/wp-content/uploads/2009/11/Professional-dropdown-2.png" alt="Professional dropdown #2" width="464" height="267" /></a><p class="wp-caption-text">Professional dropdown #2</p></div>
<h3>7. <a rel="nofollow" href="http://css-tricks.com/designing-the-digg-header-how-to-download/" title="Designing the Digg Header" >Designing the Digg Header</a></h3>
<p>The design of Digg is full of smart ideas. The site identity is strong but doesn’t take up too much valuable vertical space. Navigation is compacted with the use of simple drop-down menus. Important things like subscribing, searching and account information are right up top where you would expect them to be. It’s fluid width, but it doesn’t shrink too far or grow too big.</p>
<div id="attachment_1656" class="wp-caption aligncenter" style="width: 485px"><img class="size-full wp-image-1656" src="http://www.narga.net/wp-content/uploads/2009/11/Designing-the-Digg-Header.png" alt="Designing the Digg Header" width="475" height="201" /><p class="wp-caption-text">Designing the Digg Header</p></div>
<h3>8. <a rel="nofollow" href="http://www.jankoatwarpspeed.com/post/2009/01/19/Create-Vimeo-like-top-navigation.aspx" title="Create Vimeo-like top navigation" >Create Vimeo-like top navigation</a></h3>
<p>What I like the most is the menu that drops down when you hover search box. It offers you different search options that you can choose and narrow your search.</p>
<div id="attachment_1657" class="wp-caption aligncenter" style="width: 471px"><img class="size-full wp-image-1657" src="http://www.narga.net/wp-content/uploads/2009/11/Create-Vimeo-like-top-navigation.png" alt="Create Vimeo-like top navigation" width="461" height="168" /><p class="wp-caption-text">Create Vimeo-like top navigation</p></div>
<h3>9. <a rel="nofollow" href="http://www.javascriptkit.com/script/script2/jkmegamenu.shtml" title="Cut &amp; Paste jQuery Mega Menu" >Cut &amp; Paste jQuery Mega Menu</a></h3>
<p>Mega Menus refer to drop down menus that contain multiple columns of links. This jQuery script lets you add a mega menu to any anchor link on your page, with each menu revealed using a sleek expanding animation. Customize the animation duration plus delay before menu disappears when the mouse rolls out of the anchor. Mega cool!</p>
<div id="attachment_1659" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.narga.net/wp-content/uploads/2009/11/Cut-Paste-jQuery-Mega-Menu.png" ><img class="size-medium wp-image-1659" src="http://www.narga.net/wordpress/wp-content/uploads/2009/11/Cut-Paste-jQuery-Mega-Menu-500x246.png" alt="Cut &amp; Paste jQuery Mega Menu" width="500" height="246" /></a><p class="wp-caption-text">Cut &amp; Paste jQuery Mega Menu</p></div>
<h3>10. <a rel="nofollow" href="http://www.clarklab.net/blog/posts/animated-drop-down-menu-with-jquery/" title="Animated Drop Down Menu with jQuery" >Animated Drop Down Menu with jQuery</a></h3>
<p>Drop down menus are a really convent way to fit a large menu into a really small initial space. For a long time people have just used a form element for standard drop downs, but with minimal effort you can create a much slicker effect using jQuery and CSS.</p>
<div id="attachment_1661" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.narga.net/wp-content/uploads/2009/11/Animated-Drop-Down-Menu-with-jQuery.png" ><img class="size-medium wp-image-1661" src="http://www.narga.net/wordpress/wp-content/uploads/2009/11/Animated-Drop-Down-Menu-with-jQuery-500x235.png" alt="Animated Drop Down Menu with jQuery" width="500" height="235" /></a><p class="wp-caption-text">Animated Drop Down Menu with jQuery</p></div>
<h3>11. <a rel="nofollow" href="http://www.givainc.com/labs/mcdropdown_jquery_plugin.htm" title="mcDropdown jQuery Plugin" >mcDropdown jQuery Plugin</a></h3>
<p>To overcome this obstacle, we spent a lot of time developing code that would automatically split long lists into multiple columns and then position itself so that it always fits within the viewport. The overall effect is somewhat similar to the Microsoft® Windows® "Start &gt; All Programs" menu. However, the algorithm we use should keep the menus laid out in a more compact layout—which we believe offers quicker selection of the menu items. The screenshot below shows what the menu looks like when used with a very large menu.</p>
<div id="attachment_1663" class="wp-caption aligncenter" style="width: 449px"><img class="size-full wp-image-1663" src="http://www.narga.net/wp-content/uploads/2009/11/mcDropdown-jQuery-Plugin.png" alt="mcDropdown jQuery Plugin" width="439" height="442" /><p class="wp-caption-text">mcDropdown jQuery Plugin</p></div>
<h3>12. <a rel="nofollow" href="http://www.filamentgroup.com/lab/jquery_ipod_style_and_flyout_menus/" title="jQuery Menu: Dropdown, iPod Drilldown, and Flyout styles with ARIA Support and ThemeRoller Ready" >jQuery Menu: Dropdown, iPod Drilldown, and Flyout styles with ARIA Support and ThemeRoller Ready</a></h3>
<p>The entire menu sits within a fixed-size area, and when a node is selected, by default a "Back" link appears below the menu to allow navigation to previous (parent) menus, or set options to show breadcrumb links above the menu options to both deliver feedback and allow quick access to nodes higher up in the hierarchy. A lateral iPod-style slide transition reinforces the notion that you're moving forward into more granular data, or backward into higher-level data. This menu is specifically useful in traversing deeply nested hierarchies, particularly those more than three levels deep. It also provides a more usable alternative to multi-level fly-out menus, which can present challenges to those with limited manual dexterity.</p>
<div id="attachment_1664" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.narga.net/wp-content/uploads/2009/11/jQuery-Menu-Dropdown-iPod-Drilldown-and-Flyout-styles.png" ><img class="size-medium wp-image-1664" src="http://www.narga.net/wordpress/wp-content/uploads/2009/11/jQuery-Menu-Dropdown-iPod-Drilldown-and-Flyout-styles-500x211.png" alt="jQuery Menu - Dropdown, iPod Drilldown, and Flyout styles" width="500" height="211" /></a><p class="wp-caption-text">jQuery Menu - Dropdown, iPod Drilldown, and Flyout styles</p></div>
<h3>13. <a rel="nofollow" href="http://www.emanuelblagonic.com/2006/10/11/create-your-own-drop-down-menu-with-nested-submenus-using-css-and-a-little-javascript/" title="Drop down menu with nested submenus" >Drop down menu with nested submenus</a></h3>
<p>Create your own drop down menu with nested submenus using CSS and a little JavaScript.</p>
<div id="attachment_1668" class="wp-caption aligncenter" style="width: 485px"><img class="size-full wp-image-1668" src="http://www.narga.net/wp-content/uploads/2009/11/Drop-down-menu-with-nested-submenus.jpg" alt="Drop down menu with nested submenus" width="475" height="200" /><p class="wp-caption-text">Drop down menu with nested submenus</p></div>
<h3>14. <a rel="nofollow" href="http://www.dynamicdrive.com/style/csslibrary/item/jquery_drop_line_tabs/" title="jQuery Drop Line Tabs" >jQuery Drop Line Tabs</a></h3>
<p>This menu turns a nested UL list into a horizontal drop line tabs menu. The top-level tabs are rounded on each side thanks to the use of two transparent background images, while the sub ULs each appear as a single row of links that drop down when the mouse rolls over its parent LI. The menu also manages to sneak in a little CSS3, making use of the "border-radius" property to give each link within the sub ULs rounded edges when the mouse hovers over them..</p>
<div id="attachment_1669" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.narga.net/wp-content/uploads/2009/11/jQuery-Drop-Line-Tabs.png" ><img class="size-medium wp-image-1669" src="http://www.narga.net/wordpress/wp-content/uploads/2009/11/jQuery-Drop-Line-Tabs-500x61.png" alt="jQuery Drop Line Tabs" width="500" height="61" /></a><p class="wp-caption-text">jQuery Drop Line Tabs</p></div>
<h3>15. <a rel="nofollow" href="http://www.devirtuoso.com/2009/08/styling-drop-down-boxes-with-jquery/" title="jQuery Drop Down Boxes" >jQuery Drop Down Boxes</a></h3>
<p>One problem with HTML forms is it is hard to style the elements to fit into your design.  The tutorial will show you how to style the hardest of them all, the select box.</p>
<div id="attachment_1673" class="wp-caption aligncenter" style="width: 221px"><img class="size-full wp-image-1673" src="http://www.narga.net/wp-content/uploads/2009/11/jQuery-Drop-Down-Boxes.png" alt="jQuery Drop Down Boxes" width="211" height="135" /><p class="wp-caption-text">jQuery Drop Down Boxes</p></div>
<h3>16 . <a rel="nofollow" href="http://www.jankoatwarpspeed.com/post/2009/07/28/reinventing-drop-down-with-css-jquery.aspx" title="Reinventing a Drop Down with CSS and jQuery" >Reinventing a Drop Down with CSS and jQuery</a></h3>
<p>For me, standard HTML Select element is pretty much annoying. It's ugly. It can't be styled properly in Internet Explorer. And it can't contain nothing but simple text. That is the reason I needed to reinvent Drop Down element. This tutorial shows how to do that (easily, believe it or not).</p>
<div id="attachment_1682" class="wp-caption aligncenter" style="width: 510px"><img class="size-full wp-image-1682" src="http://www.narga.net/wp-content/uploads/2009/11/Reinventing-a-Drop-Down-with-CSS-and-jQuery.jpeg" alt="Reinventing a Drop Down with CSS and jQuery" width="500" height="200" /><p class="wp-caption-text">Reinventing a Drop Down with CSS and jQuery</p></div>
<h3>17. <a rel="nofollow" href="http://hv-designs.co.uk/2009/02/17/sliding-jquery-menu/" title="Sliding Jquery Menu Tutorial" >Sliding Jquery Menu Tutorial</a></h3>
<p>This tutorial will show you how to create a sliding menu button using jquery. You can see the effect in action over on the PSDtuts webpage in the top right hand corner.</p>
<div id="attachment_1683" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.narga.net/wp-content/uploads/2009/11/Sliding-Menu-Tutorial.png" ><img class="size-medium wp-image-1683" src="http://www.narga.net/wordpress/wp-content/uploads/2009/11/Sliding-Menu-Tutorial-500x384.png" alt="Sliding Menu Tutorial" width="500" height="384" /></a><p class="wp-caption-text">Sliding Menu Tutorial</p></div>
<h3>18. <a rel="nofollow" href="http://mattberseth.com/blog/2007/12/creating_an_outlook_navigation.html" title="Creating an Outlook Navigation Bar using the ListView and Accordion Controls" >Creating an Outlook Navigation Bar using the ListView and Accordion Controls</a></h3>
<p>The Accordion is a web control that allows you to provide multiple panes and display them one at a time. It is like having several CollapsiblePanels  where only one can be expanded at a time. The Accordion is implemented as a web control that has AccordionPane web controls.</p>
<div id="attachment_1684" class="wp-caption aligncenter" style="width: 255px"><img class="size-full wp-image-1684" src="http://www.narga.net/wp-content/uploads/2009/11/Creating-an-Outlook-Navigation-Bar-using-the-ListView-and-Accordion-Controls.png" alt="Outlook Navigation Bar using the ListView and Accordion Controls" width="245" height="347" /><p class="wp-caption-text">Outlook Navigation Bar using the ListView and Accordion Controls</p></div>
<h3>19. <a rel="nofollow" href="http://aext.net/2009/08/perfect-sign-in-dropdown-box-likes-twitter-with-jquery/" title="Perfect signin dropdown box likes Twitter with jQuery" >Perfect signin dropdown box likes Twitter with jQuery</a></h3>
<p>This tutorial will explain how it works step by step and it’s good for learning jQuery how to do the toggle and tool tips. Enjoy it!</p>
<div id="attachment_1688" class="wp-caption aligncenter" style="width: 313px"><img class="size-full wp-image-1688" src="http://www.narga.net/wp-content/uploads/2009/12/Twitter-Login.png" alt="Perfect signin dropdown box likes Twitter with jQuery" width="303" height="259" /><p class="wp-caption-text">Perfect signin dropdown box likes Twitter with jQuery</p></div>
<h3>20. <a title="jQuery UI Potato Menu" href="http://labs.makotokw.com/s/jquery/menu">jQuery UI Potato Menu Plugin<br />
</a></h3>
<div id="attachment_1691" class="wp-caption aligncenter" style="width: 510px"><img class="size-full wp-image-1691" src="http://www.narga.net/wp-content/uploads/2009/12/jQuery-UI-Potato-Menu.gif" alt="jQuery UI Potato Menu" width="500" height="400" /><p class="wp-caption-text">jQuery UI Potato Menu</p></div>
<h3>21. <a rel="nofollow" href="http://users.tpg.com.au/j_birch/plugins/superfish/" title="Superfish v1.4.8 – jQuery menu plugin by Joel Birch" >Superfish v1.4.8 – jQuery menu plugin by Joel Birch</a></h3>
<p>Superfish is an enhanced Suckerfish-style menu jQuery plugin that takes an existing pure CSS drop-down menu (so it degrades gracefully without JavaScript) and more features.</p>
<div id="attachment_1695" class="wp-caption aligncenter" style="width: 510px"><img class="size-full wp-image-1695" src="http://www.narga.net/wp-content/uploads/2009/12/Superfish-jQuery-menu-plugin-by-Joel-Birch.gif" alt="Superfish - jQuery menu plugin" width="500" height="327" /><p class="wp-caption-text">Superfish - jQuery menu plugin</p></div>
<h3>22. <a rel="nofollow" href="http://www.dynamicdrive.com/dynamicindex1/ddsmoothmenu.htm" title="Dynamic Drive - Smooth Navigational Menu" >Dynamic Drive - Smooth Navigational Menu</a></h3>
<p>Smooth Navigation Menu is a multi level, CSS list based menu powered using jQuery that makes website navigation a smooth affair. And that's a good thing given the important role of this element in any site. The menu's contents can either be from direct markup on the page, or an external file and fetched via Ajax instead.</p>
<div id="attachment_1696" class="wp-caption aligncenter" style="width: 510px"><img class="size-full wp-image-1696" src="http://www.narga.net/wp-content/uploads/2009/12/Smooth-Navigation-Menu.gif" alt="Smooth Navigation Menu" width="500" height="245" /><p class="wp-caption-text">Smooth Navigation Menu</p></div>
<h3>23. <a rel="nofollow" href="http://abeautifulsite.net/notebook.php?article=58" title="jQuery File Tree" >jQuery File Tree</a></h3>
<p>jQuery File Tree is a configurable, AJAX file browser plugin for jQuery. You can create a customized, fully interactive file tree with as little as one line of JavaScript code.</p>
<div id="attachment_1697" class="wp-caption aligncenter" style="width: 510px"><img class="size-full wp-image-1697" src="http://www.narga.net/wp-content/uploads/2009/12/jQuery-File-Tree.gif" alt="jQuery File Tree" width="500" height="238" /><p class="wp-caption-text">jQuery File Tree</p></div>
<h3>24. <a rel="nofollow" href="http://www.sitepoint.com/blogs/2009/03/31/make-a-mega-drop-down-menu-with-jquery/" title="Make a Mega Drop-Down Menu with jQuery" >Make a Mega Drop-Down Menu with jQuery</a></h3>
<div id="attachment_1698" class="wp-caption aligncenter" style="width: 510px"><img class="size-full wp-image-1698" src="http://www.narga.net/wp-content/uploads/2009/12/Make-a-Mega-Drop-Down-Menu-with-jQuery.gif" alt="Make a Mega Drop-Down Menu with jQuery" width="500" height="313" /><p class="wp-caption-text">Make a Mega Drop-Down Menu with jQuery</p></div>
<h3>25. <a rel="nofollow" href="http://pupunzi.open-lab.com/2009/01/18/mbmenu/" title="jQuery.mb.Menu" >jQuery.mb.Menu</a></h3>
<p>This is a powerful jQuery component to build easily a multilevel tree menu or a contextual menu (right-click) in an intuitive way!<br />
You can add as many submenus as you want; if your submenu or menu is not declared in the page, the component’ll get it via ajax calling the template page with the id of the menu you need (the value of  “menu” attribute) the ajax page should return a well formatted code as the example below for the menu voices code.</p>
<div id="attachment_1703" class="wp-caption aligncenter" style="width: 439px"><img class="size-full wp-image-1703" src="http://www.narga.net/wp-content/uploads/2009/12/jquery-mb.menu_.png" alt="jQuery.mb.Menu" width="429" height="270" /><p class="wp-caption-text">jQuery.mb.Menu</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.narga.net/sexy-jquery-drop-down-multi-level-menu/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
	</channel>
</rss>

