jquery-simple-context-menu icon indicating copy to clipboard operation
jquery-simple-context-menu copied to clipboard

A really simple, good looking jQuery context menu

Results 17 jquery-simple-context-menu issues
Sort by recently updated
recently updated
newest added

Hi,i would like to ask how to enable disabled item dynamically.Thanks

I tried using the plugin. But the context menu does not appear in IE8. Works in IE9 and chrome. It complained about the forEach() not being available. Changed that to...

This setting allows one to bind to a parent element while still only showing the contextmenu on specific child elements. This simplifies the case where child elements get added dynamically....

This adds a callback which can be provided with: ``` $("#whatever").contextPopup({ beforeOpen : function(e) { // .. }); ``` This is very useful in situation where you want to change...

in createMenu() the click on menu items is listened to this way: ``` if (item.action) { row.find('a').click(function(){ item.action(e); }); } ``` This doesn't stop the tag to follow its href:...

I am trying to create the same menu for all objects with a given name. I am using the menu from the readme just to get it to work. When...