Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery Right Mouse click context-menu plugins

Tags:

jquery

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

URLs/demos would be much appreciated.

like image 288
tonyf Avatar asked Feb 17 '10 13:02

tonyf


2 Answers

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

like image 65
Nick Craver Avatar answered Oct 19 '22 21:10

Nick Craver


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

like image 5
sly63 Avatar answered Oct 19 '22 21:10

sly63