Cliquez avec le bouton droit personnalisé JS

//The right click popup window is called the 'context menu'
element.addEventListener('contextmenu', customContextMenu);
function customContextMenu(event) {
 event.preventDefault();
 //show custom context menu here
}
MunchDuster