jQuery-contextMenu
jQuery-contextMenu copied to clipboard
jQuery contextMenu plugin & polyfill
Hello, I see that selector is mandatory. But for example, in my case, I use canvas so there isn't anything to select with jquery selector because objects in canvas are...
please see attached. dev console in chrome is open to simulate this. when the first context menu shows, it shows it above the dev console. once i navigate over to...
Fixed sub menu overboundary and position problem.
I have a simple table like: ``` Left click $(function() { $.contextMenu({ selector: '.context-menu-one', callback: function(key, options) { var m = "clicked: " + key; window.console && console.log(m) || alert(m);...
Let me start by saying I am generating a contextmenu dynamically. I doubt, however, that that changes the issue I have. I have noticed that sometimes if I have a...
I have downloaded the current version, and created a test page. In the test page if I use list elements the function propagates from the top list item down to...
Unlike disabled, for example, when defining an item's visible option, the options (second arg) doesn't include the $trigger, which makes this new (and very appreciated!) feature hard to use.
The callback in code below is not actually working. What to do in case of html5 menu? $.contextMenu({ selector: '.context-menu-one', callback: function(key, options) { var m = "global: " +...
It doesn't seem like you can specify options when using as an html5 polyfill. Currently I'm testing the following: ``` case 'html5': // if or are not handled by the...
I like the examples as you present them.. what I need is a working sample that is as easy to pick up and use. As it is there seem to...