This plugin automatically creates pop-out navigation menus from nested unordered lists of links. It's not the fanciest menu you'll see, but it is fast, easy to understand and easy to customise. It's also extremely lightweight, weighing in at about 1.5kb uncompressed.
Pure CSS menus almost identical to this are entirely possible, but this menu implements a small delay on rollover and mouseout, making it much more usable and forgiving.
Click here to Download (Version 1.0) »
Download CSS and arrow image »
| Option | Type | Required | Default | Description |
|---|---|---|---|---|
| delay | int | no | 300 | The delay between mousing over or out of a menu item and the menu opening/closing itself (ms) |
$(document).ready(function(){
$('#menu1').popMenu();
});
$(document).ready(function(){
$('#menu2').popMenu({ 'delay': 1000 });
});