public
Description: Nested drop downs, jQuery styleee
Homepage: http://onehackoranother.com/projects/jquery/droppy/
Clone URL: git://github.com/jaz303/droppy.git
droppy /
name age message
file LICENSE Tue Jun 17 14:28:36 -0700 2008 Reorganisation [Jason]
file Makefile Thu Oct 09 15:08:11 -0700 2008 Decided to go with standard make instead of rak... [Ziling Zhao]
file README Sun Dec 14 18:26:26 -0800 2008 Changed IDs to classes in docs [jaz303]
directory docs/ Tue Dec 01 08:57:17 -0800 2009 migrated docs to project-kit [jaz303]
directory src/ Sun Oct 25 03:56:05 -0700 2009 Add 'has-subnav' class to any nav items which t... [jaz303]
README
droppy - jQuery nested drop-down menu
  (c) 2008 Jason Frame (jason@onehackoranother.com)
  Released under The MIT License.

== DESCRIPTION:

droppy creates nested drop down menus from semantic markup, by the power of
jQuery.

== HOMEPAGE:

http://onehackoranother.com/projects/jquery/droppy

== SOURCE:

Hosted at GitHub; browse at:

  http://github.com/jaz303/droppy/tree/master

Or clone from:

  git@github.com:jaz303/droppy.git

== USAGE:

1. Copy contents of JavaScript/CSS assets to your project and include in your
layout.

2. Create your menu using semantic, nested lists:

<ul class='nav'>
  <li><a href='#'>foo</a></li>
  <li>
    <a href='#'>bar</a>
    <ul>
      <li><a href='#'>baz</a></li>
      <li><a href='#'>bleem</a></li>
    </ul>
  </li>
</ul>

3. Initialise droppy thusly: $('.nav').droppy();

4. Modify configurable portion of CSS to your liking.