Main Menu
Superfish jQuery Menu
I have used Superfish jQuery improved dropdown menu itself is easy to edit. Its structure base on a nested unoredered lists structure.
| File Name | Description |
|---|---|
superfish.css |
Style sheet for Superfish Menu. |
superfish.js |
Menu script file. |
Link to the js/superfish.js file using a script tag in the head of your document.
<script type="text/javascript" src="js/superfish.js"></script>
Call superfish() on the containing ul element (in file /js/custom.js).
/***************************************************
SUPER FISH MENU
***************************************************/
jQuery.noConflict()(function($){
$(document).ready(function() {
$("ul.sf-menu").superfish({
pathClass: 'current',
autoArrows : true,
delay:300,
speed: 'normal',
animation: {height:'show'}
});
});
});
There are many options available to customise your menu. You can find out about them in the Options tab of this site.
