Cris
Cris

Reputation: 12194

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 different options.

Are there any similar examples available?

Upvotes: 0

Views: 309

Answers (2)

BJ Safdie
BJ Safdie

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

Kevin Ennis
Kevin Ennis

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

Related Questions