|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/highlandlabs/cqi-bin/ALFA_DATA/alfasymlink/root/domains/insite/droppy/ |
Upload File : |
droppy - jQuery nested drop-down menu
(c) 2008 Jason Frame ([email protected])
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:
[email protected]: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 id='#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.