1
vote
3answers
33 views

jQuery context menu filled with php content based on selection

When a user selects a word in a text on my website (PHP), and then right clicks, i want a jQuery context menu to come up, this can be done by using one of the already existing jQuery context menu ...
-1
votes
1answer
20 views

Disable context menu for textbox

I have a custom textbox control with extends the TextBox APS.NET class. It is built such that on right click a calendar opens. So far so good, but in Firefox the default context menu opens over my ...
0
votes
2answers
76 views

How to get the id on right click context menu in dojo Tree?

I want to get the node id of Dojo's tree on context menu click. I'm making a tree in Dojo like this. Here is the id - the first param. this.setData( [ { id: '5', name:'root' , ...
0
votes
1answer
132 views

Adding contextmenu to WP8 browser control

I am trying to attach a context menu when user perform a hold gesture on a link on a webpage. I've searched the web and found some recommendations HERE if (webBrowser.IsScriptEnabled) { ...
0
votes
2answers
236 views

Disable Firefox's silly right click context menu

I am making an HTML 5 game which requires the use of right click to control the player. I have been able to disable the right click context menu by doing: <body oncontextmenu="return(false);"> ...
2
votes
1answer
102 views

Anchor tag event not firing

My problem is that my anchor onclick event is not firing. Here is my jquery code This is a pageLoad Event function pageLoad() { I am Binding the context menu Event on an anchor ...
0
votes
1answer
55 views

is it possible to relay item in context menu to self written function?

Is it possible to get the event of a item in the contextmenu? The undo function for the input box in Chrome is no good, I wrote about it earlier today. Instead I use a custom undo function that gets ...
0
votes
1answer
53 views

Paste thru browser native context menu for custom div

I've got a <div> block, where I want user to be able to paste data thru browser native context menu. contenteditable="true" is not an acceptable solution. Ace editor ...
1
vote
2answers
143 views

disable dynamic context menu using javascript in jsf

Is it possible to disable a dynamic context menu in JSF2.1 using java script ? document.getElementById("myForm:contextMenuId:contextMenuItemId").style.display = 'none'; This works for a p:menuItem ...
0
votes
1answer
40 views

event is undefined for firefox browser on calling oncontextmenu

I am displaying context menu on right-clicking a button in a page. The code used for displaying context menu is window.addEventListener('contextmenu',function (e){e.preventDefault();},false);} ...
0
votes
1answer
141 views

make Chrome extension contextMenu load

I'm working on a chrome extension and it's a contextMenu and appears in the right click menu . but the problem is , you have to open the extension from the up-right corner of chrome to make it appear ...
0
votes
1answer
56 views

Blackberry context menu close event

I develop a javascript blackberry-webworks based application. I've defined my own context for menu (blackberry.ui.contextmenu.defineCustomContext) and added several items. It can be opened at ...
2
votes
2answers
63 views

Positioning Context Menu

I'm trying to position a custom context menu with jQuery. The first time it appears at the right position (mouse coordinates), but then the current position is being summed up with the new position, ...
0
votes
1answer
101 views

How to open context menu without long press using javascript in iPhone safari?

Is there a way to do something? :-) <a href="http://www.google.com/">Long press me!</a> <script type="text/javascript"> // do something to open context menu of anchor element ...
1
vote
1answer
909 views

Contextmenu with bootstrap dropdown not working in Firefox

I am trying to display a Twitter Bootstrap dropdown menu on right click on a element. This is the code that I wrote: Javascript var toggle = $('.dropdown-toggle'); ...
1
vote
0answers
37 views

Letting through right click (only), works on image but not iframe

Trying to figure out how to get this script working with vimeo embeds. Seems to work alright with images (tried in FF, Chrome and Safari in OS X). However the vimeo embed just won't bring up the ...
1
vote
1answer
60 views

Jquery: contextMenu reset

Hi I enconter some problem with: http://jsfiddle.net/fNgXX/4/ What I want: When user doubleclick on word, depending on text, I ll show different contextMenu. 1st bug here: $('word').click( ...
1
vote
0answers
72 views

Keyup event not registered after contextmenu event

I am trying out this following code. It is supposed to change the sh attribute of the input to 1 whenever the shift key is pressed, and revert back to 0 when released <!DOCTYPE html> ...
1
vote
1answer
106 views

Alternative for oncontextmenu - javascript

I'm looking for a JavaScript alternative to onContextMenu in an xHTML page. I want to hide the menu which pops-up (The context menu) When I click the right mouse button on a website. I have a problem ...
0
votes
1answer
48 views

Treeview in ContextMenu

I got this crazy idea trying to display a tree in a context menu. I did a google search and cudnt find anything related. Can this actually be achieved? I know I am not posting in any code, but wanted ...
0
votes
2answers
224 views

Showing context menu buttons only when right-clicked on classes that start with “Story”

Is there a way to show context menu actions, only when the user right-clicks on classes that start with "story". For example: if the user right-clicks on an object in the page of class "story ....", ...
1
vote
1answer
75 views

Adding children to context menu links

I am trying to add children for my context menu, but for some reason it is not working for me. Here is my code: var parent1 = chrome.contextMenus.create({"title": "Trigger Rank", ...
1
vote
0answers
179 views

How can I use $().bind and mouseup to remove contextmenu?

I need to use the $().bind method. I do not wish to use another plugin. I simply want to add both a left click and a right click function. Here is my function handler. I also must disable the context ...
1
vote
1answer
130 views

Apply actual actions to right click context menu

I am trying to use this right-click context menu. It works visually as hoped, however I dont know where to begin to apply actual actions when menu items are clicked. Obviously right now all it says ...
0
votes
1answer
887 views

jQuery ContextMenu DropDown

I am using this contextMenu template: http://medialize.github.com/jQuery-contextMenu/index.html and i would like to change the place where the menu appears, i mean i want it to ALWAYS Appear from the ...
1
vote
3answers
88 views

Is it possible to use a variable as a function name

I have a context menu that returns the menu item clicked as a value in a variable, like so. var m = key; The variable can be anything I program, for example; edit, cut, paste or anything else I ...
0
votes
0answers
250 views

jQuery Context Menu auto-hides but shouldn't?

I have a working context menu for jQuery, as built below: $.fn.panel___updateRightClickContextMenu = function() { $(".track_row").unbind('contextmenu').bind('contextmenu', function(e) { ...
3
votes
1answer
844 views

Creating dynamic context menu in Chrome Extension is failing

I am trying to create entries on the Chrome context menu based on what is selected. I found several questions about this on Stackoverflow, and for all of them the answer is: use a content script with ...
0
votes
1answer
1k views

Custom context menu in d3 and svg

I would like to have custom context menu appearing when I right click on an svg circle. For now I have found this answer that helps me to handle the right click with the following code: ...
0
votes
1answer
279 views

Adding a context menu to a DevExpress MVC Extension treeview

I have been following this example on how to get a context menu working with the tree view extension, and for now, I have just tried to implement the same functionality as is in the example to my ...
1
vote
1answer
567 views

Jquery Binding a context menu to dynamic element id

Basic story, I've got a system that handles each div id dynamically. I decided to take over the context menu with one of my own, and it works, so long as the id of the element is hardcoded. I've been ...
0
votes
3answers
386 views

Disable contextmenu but NOT in textboxes

I want to disable the contextmenu on my page, because I have an own. But in the textboxes it should be possible to use the system contextmenu. I'm doing it with javascript like that: ...
3
votes
1answer
593 views

Enabling jQuery contextMenu item on ajax request

I'm trying to update contextmenu item if ajax requests alters my div content. Here is what I mean I have a div like this : <div id="" class="message" data-options='{"update":"YES", ...
0
votes
0answers
169 views

Dracula graph framework javascript [closed]

While working with Dracula graph framework, I tried to integrate with jQuery ContextMenu plugin, it did not work(no menu was shown). I needed to show a menu for every node created. Code: ...
0
votes
2answers
825 views

jQuery contextMenu disable items based on div content

I've been going trough documents of this plugin and it looked promising, but at the end I wasn't able to find out that what I was looking for. http://medialize.github.com/jQuery-contextMenu/docs.html ...
2
votes
1answer
367 views

Is there a close event for the browser contextmenu

I'm catching the contextmenu event using jQuery like this: $(document.body).on("contextmenu", function(e){ //do stuff here }); So far, so good. Now I want to execute some code when it closes ...
1
vote
1answer
1k views

Capturing the newly created node with JSTree contextmenu

I'm trying to capture the name of the newly created node with jstree's contextmenu. I can capture the name of the parent node that I'm adding the new node under (with obj.text()), however, what I ...
3
votes
2answers
532 views

Can we disable right clicking on Anchor Tag in HTML

I have a requirement where right clicking on document name in grid opens a customized context menu (using Smartgwt). I had to implement hyperlink so I created an anchor tag (which calls a JSNI method ...
1
vote
3answers
227 views

HTML5 contextmenu - Access originally clicked element when menu item is clicked

I'm experimenting with the HTML5 contextmenu item in the latest version of Firefox (only browser that currently supports it). When I click on a menu item from the context menu how can I access the ...
0
votes
0answers
95 views

onContextMenu in Mac Safari opens my menu but immediately closes it

In my webapp, I have an onContextMenu event handler that opens a custom menu. It works fine on Windows (FF, Chrome, IE, Safari) but on a mac it's strange. If I use a two-finger click on the ...
1
vote
1answer
291 views

Prevent menu key from showing a context menu

I know that the keyboard menu key is keyCode === 93. So I have the following code: $(window).on("keydown", document, function(event){ if (event.keyCode === 93) { //context menu ...
0
votes
1answer
123 views

Does stopPropagation also prevent other handlers on the same element from running?

I know that stopPropagation() prevents the event from reaching the DOM elements that wrap the current element. Does it also prevent this event from being delivered to other handlers on the same ...
0
votes
0answers
55 views

Send multiple selected elements from table to Dialog UI

I have a piece of code that links to the "TD"s of a table, a ContextMenu. In this linking, a function is also set such that when an action is performed (a button from the ContextMenu is pressed), a ...
0
votes
1answer
165 views

Adding Entries to Context Menu in JavaScript

I've seen this question before on SO (here) but I've seen it happen, right-clicking on JWPlayer displays options like "About JWPlayer", etc. Anyone know how JWPlayer did it, even if it isn't JS?
0
votes
1answer
111 views

Return original contextmenu for textarea?

I have got a div contains a textarea. <div class="parent" style="width: 500px;height: 500px;"> <textarea style="width: 100%;height:50%" class="children"></textaarea> </div> ...
2
votes
1answer
414 views

popup window at chrome extensions' context menu

I'm developing a chrome extension and have a problem. I've added an item to chrome's context menu and want to open a popup window if the menu item is clicked. My code looks like this: function ...
0
votes
1answer
262 views

Error in using contextmenu in jquery?

I want to create a contextmenu of a div tag to append some contents into it. But when i right click many times continuously,my div tag contains more contents than i want.Here is my code. <html> ...
0
votes
2answers
111 views

How to show the same context menu item under two conditions

I would like to show a menu item in the context menu if the user right-click on a selection OR they right click on an image. Currently I am using this code but unfortunately it shows the menu item ...
0
votes
1answer
343 views

self.postMessage and onMessage don't work for a context item

I am trying to develop an addon for Firefox (using the latest version of JetPack) that sends some AJAX data on the click on a context item. However, unfortunately it seems I have hit some problem. ...
2
votes
1answer
502 views

CKEditor 3.6.3 Enable browser spellcheck and disable context menu

I'm trying to get a spellcheck into a very bare bones implementation of CKEditor. I've disabled ALL the toolbars and plugins, so we're just left with a simple text box that creates basic HTML. Is it ...

1 2 3