开发者

I need a jquery menu bar implementation similar to MenuMatic

I need a jquery implementation of a horizontal menubar similar to ManuMatic.

I found mb.menu but it seems to require tables instead of ul. I need this to work with ul because I'm not allowed to change the HTML producing code.

  1. Is there any implementation of something like mb.menu but using only nested ul?
  2. Can use MooTools开发者_开发技巧 along with jquery without trouble?

UPDATE: It that @bobince already answer the second question on Can jQuery and Mootools work together?


I made a jQuery UI plugin as you wish.
Please try it if you like.:-)

https://github.com/madguy/jQuery.ui.smoothMenu


There are tons. Here are couple that's done by with jQuery that i used before. This demo for the first attaches onClick event but i modified it to use for hover and etc:

jQuery DropDown

Superfish jQuery Dropdown

jQuery can be used in no-conflict mode:

jQuery.noConflict();

or could use jQuery instead of $. this is definately a duplicate question on that.


<script type="text/javascript" src="flashheader/jquery-1.7.1.min.js"></script>
<script type="text/javascript">
    $.noConflict();
    jQuery(document).ready(function($) {
        //code you need to use
    });  
</script>

It helped me yith JQuery conflict. Hope it wil help you too.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜