Reputation: 8326
I've used YUI Menu in the past for website navigation, and was impressed with it's ability to handle all sorts of cases like viewport size detection, etc. My current project is centered in jQuery, and I wondering if there's a good comparable menu system for jQuery. Web searches haven't turned up an answer to this specific question.
Specific things that YUI Menu does that I am looking for:
<ul>
)Two examples from the YUI site:
Upvotes: 1
Views: 1278
Reputation: 11125
I would +1 jqueryUI menu. Have a look into simple sample here http://docs.jquery.com/UI/Menu If you are designing a RIA App i suggest ExtJS look here ExtJS menu demo jQueryUI can provide you a menu system like below
wiki.jqueryui.com/f/1226677250/e2_menubar.png
here is a quick code to view the menu'
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script> <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script> <script src="http://view.jqueryui.com/menu/ui/jquery.ui.menu.js"></script> <script type="text/javascript">// <![CDATA[
$(document).ready(function() {$("ul").menu();});
// ]]></script>
<ul>
<li><a href="#">Aberdeen</a></li>
<li><a href="#">Ada</a></li>
<li><a href="#">Adamsville</a></li>
<li><a href="#">Addyston</a></li>
<li><a href="#">Adelphi</a></li>
</ul>
Upvotes: 1
Reputation: 106342
Perhaps you are looking for something like the Filament Group jQuery UI Menu Plugin. It has some powerful dropdown/flyout options, including some iPod style menus with flyouts, etc.
It also looks like the jQuery UI Menu (in development) can do what you are looking for - take a look at the second example on this page
Upvotes: 2
Reputation: 5999
Here you have all class of menus I don't know what do you need exactly, but take a look here:
http://plugins.jquery.com/projects/plugins?type=44
Upvotes: 1