I want to block the standard context menus, and handle the right-click event manually.
How is this done?
|
I want to block the standard context menus, and handle the right-click event manually. How is this done? |
|||||||||||||
|
|
Use the oncontextmenu event. Here's an example:
Don't forget to return false, otherwise the standard context menu will still pop up. |
|||||
|
|
I think that you are looking for something like this:
(http://www.quirksmode.org/js/events_properties.html) And then use the onmousedown even with the function rightclick() (if you want to use it globally on whole page you can do this |
|||
|
I would suggest using JQuery, Here's an example |
|||||||||||
|
|
With Chase's answer, if you are going to use a function you've written rather than |
||||
|
|