Guest_imported
New member
- Jan 1, 1970
- 0
Hi,
I need to disable right mouse button in my application. The main reason for this is I don't what to diplay context menu on right mouse click. I could able to disable the mouse button in IE browser. But I could not able to do the same in Netscape version 4+. Here is my code
window.captureEvents(Event.MOUSEDOWN);
window.onmousedown = function(e){
if(e.target==document)return false;
}
This code works fine when you click right mouse button on the document, but if i click right mouse button on links, or other elements on the browser, I could not able to disable the context menu. I appreciate if any one gives a tip.
Thanks,
Gorijavolu.
I need to disable right mouse button in my application. The main reason for this is I don't what to diplay context menu on right mouse click. I could able to disable the mouse button in IE browser. But I could not able to do the same in Netscape version 4+. Here is my code
window.captureEvents(Event.MOUSEDOWN);
window.onmousedown = function(e){
if(e.target==document)return false;
}
This code works fine when you click right mouse button on the document, but if i click right mouse button on links, or other elements on the browser, I could not able to disable the context menu. I appreciate if any one gives a tip.
Thanks,
Gorijavolu.