Niestandardowe kliknięcie prawym przyciskiem myszy 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