tags:

views:

185

answers:

4

Hi,

I realise there are alot out there but can people please recommend decent and lightweight jQuery Right Mouse click context-menu plugins.

URLs/demos would be much appreciated.

Thanks.

+2  A: 

I'm using this for a current project, only 4kb minified and no problems this far:
jQuery Context Menu Plugin (abeautifulsite.net)

Direct demo page: Here

Nick Craver
A: 

try this

http://plugins.jquery.com/project/jqueryContextMenu

Demo http://www.trendskitchens.co.nz/jquery/contextmenu/

There are plenty available in the net.. google it.

Jeeva S
A: 

I like this one:

http://abeautifulsite.net/2008/09/jquery-context-menu-plugin/

there is a right-click plugin on that side as well. Note, that Opera does not support context-menus

harpax
A: 

Hi,

here is the jQuery code to disable "regular" context menu :

$(document).bind("contextmenu",function(e){ return false; });

It's usefull when you want to use your own context menu but dont't what to show the navigator's context menu...

sly63