Hello,
I am working on a web app, in which I want to have a different action to happen to an element whether I left or right click on it
So I added a function for "click" with jQuery and added a function for the "oncontextmenu" attribute of my element.
This is working well in Chrome & IE but raises a problem in Firefox: when I right click on an element, the left click event is raised first so both my left then right click functions are called.
How can I make Firefox not calling the left click function when I right click?
Thanks for your help.