Reputation: 12194
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 different options.
Are there any similar examples available?
Upvotes: 0
Views: 309
Reputation: 3419
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.
Upvotes: 1
Reputation: 14456
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();
});
Upvotes: 1