I can\'t find a related question to give me an idea about how to do this.
I\'ve seen some topics about how to know if the right-click button was clicked but I\'d like to
In a browser, you can:
a) ignore the right click and let the browser itself handle it (which usually means a context menu will be shown)
XOR
b) handle the right click yourself, which means that the browser won't show its context menu.
You can't have both a) and b), they're mutually exclusive. If you want a right-click context menu on a webpage, you need to fake it yourself - for example, see this tutorial and the result.