i have two download links. after right click on this link it showing option link "open in new tab" "save link as" "copy link location" and so on. but i want to protect this link. there should not showing this option when right click on download link. please help
Thanks in advance
Use context menu event to prevent the menu from showing:
document.getElementById('downloadThisPage').addEventListener('contextmenu', function (event) {
event.preventDefault();
return false;
});