<?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>jQuery Tutorials &#38; Plugins &#187; menu</title>
	<atom:link href="http://jqueryblog.net/tag/menu/feed/" rel="self" type="application/rss+xml" />
	<link>http://jqueryblog.net</link>
	<description></description>
	<lastBuildDate>Mon, 05 Jul 2010 08:45:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>jQuery drop down menu : droppy</title>
		<link>http://jqueryblog.net/2009/11/jquery-drop-down-menu-droppy/</link>
		<comments>http://jqueryblog.net/2009/11/jquery-drop-down-menu-droppy/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 15:07:36 +0000</pubDate>
		<dc:creator>Osman Erdo&#287;an</dc:creator>
				<category><![CDATA[jQuery Tutorial]]></category>
		<category><![CDATA[drop down]]></category>
		<category><![CDATA[drop down menu]]></category>
		<category><![CDATA[droppy]]></category>
		<category><![CDATA[menu]]></category>

		<guid isPermaLink="false">http://jqueryblog.net/?p=13</guid>
		<description><![CDATA[Quick and dirty nested drop-down menu in the jQuery styleee. I needed a nav like this for a recent project and a quick Googling turned up nothing that really suited, so droppy was born. It hasn&#8217;t been designed with flexibility in mind &#8211; if you like what you see, great, integration should be a breeze [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fjqueryblog.net%2F2009%2F11%2Fjquery-drop-down-menu-droppy%2F"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fjqueryblog.net%2F2009%2F11%2Fjquery-drop-down-menu-droppy%2F" height="61" width="51" /></a></div><p>Quick and dirty nested drop-down menu in the jQuery styleee. I needed a nav like this for a recent project and a quick Googling turned up nothing that really suited, so droppy was born. It hasn&#8217;t been designed with flexibility in mind &#8211; if you like what you see, great, integration should be a breeze &#8211; otherwise I&#8217;d look for something more configurable elsewhere.</p>
<p><strong>Usage:</strong><br />
Javasctipy:</p>
<pre class="brush: jscript;">&lt;script type='text/javascript'&gt;
  $(function() {
    $('#nav').droppy();
  });
&lt;/script&gt;</pre>
<p>HTML:</p>
<pre class="brush: xml;">&lt;ul id='nav'&gt;
  &lt;li&gt;&lt;a href='#'&gt;Top level 1&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href='#'&gt;Top level 2&lt;/a&gt;
    &lt;ul&gt;
      &lt;li&gt;&lt;a href='#'&gt;Sub 2 - 1&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;
        &lt;a href='#'&gt;Sub 2 - 2&lt;/a&gt;
        &lt;ul&gt;
          &lt;li&gt;
            &lt;a href='#'&gt;Sub 2 - 2 - 1&lt;/a&gt;
            &lt;ul&gt;
              &lt;li&gt;&lt;a href='#'&gt;Sub 2 - 2 - 1 - 1&lt;/a&gt;&lt;/li&gt;
              &lt;li&gt;&lt;a href='#'&gt;Sub 2 - 2 - 1 - 2&lt;/a&gt;&lt;/li&gt;
              &lt;li&gt;&lt;a href='#'&gt;Sub 2 - 2 - 1 - 3&lt;/a&gt;&lt;/li&gt;
              &lt;li&gt;&lt;a href='#'&gt;Sub 2 - 2 - 1 - 4&lt;/a&gt;&lt;/li&gt;
            &lt;/ul&gt;
          &lt;/li&gt;
          &lt;li&gt;&lt;a href='#'&gt;Sub 2 - 2 - 2&lt;/a&gt;&lt;/li&gt;
          &lt;li&gt;
            &lt;a href='#'&gt;Sub 2 - 2 - 3&lt;/a&gt;
            &lt;ul&gt;
              &lt;li&gt;&lt;a href='#'&gt;Sub 2 - 2 - 3 - 1&lt;/a&gt;&lt;/li&gt;
              &lt;li&gt;&lt;a href='#'&gt;Sub 2 - 2 - 3 - 2&lt;/a&gt;&lt;/li&gt;
              &lt;li&gt;&lt;a href='#'&gt;Sub 2 - 2 - 3 - 3&lt;/a&gt;&lt;/li&gt;
              &lt;li&gt;&lt;a href='#'&gt;Sub 2 - 2 - 3 - 4&lt;/a&gt;&lt;/li&gt;
            &lt;/ul&gt;
          &lt;/li&gt;
        &lt;/ul&gt;
      &lt;/li&gt;
      &lt;li&gt;&lt;a href='#'&gt;Sub 2 - 3&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
&lt;/ul&gt;</pre>
<p>With Custom Speed:</p>
<pre class="brush: jscript;">&lt;script type='text/javascript'&gt;
  $(function() {
    $('#nav').droppy({speed: 100});
  });
&lt;/script&gt;</pre>
<p><a href="http://onehackoranother.com/projects/jquery/droppy/#example" target="_blank">Example</a> &#8211; <a href="http://plugins.jquery.com/project/droppy" target="_blank">Download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jqueryblog.net/2009/11/jquery-drop-down-menu-droppy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

