jQuery plugin for contextual menu
I need to have a fancy jQuery contextual menu for my web app; when the user clicks a point I would like to show a menu as a balloon or other graphical items with differen开发者_如何学Ct options.
Are there any similar examples available?
http://abeautifulsite.net/blog/2008/09/jquery-context-menu-plugin/#demo
It's also pretty easy to build from scratch...
$(".target").bind("contextmenu", function(){
$("#contextMenu").show();
});
Try qTip for the popup part. You will still need to populate and style your menu links, but qTip provides a nice browser-independent balloon-type popup.
精彩评论