Search code examples
javascripthtmlhyperlinkdownloadprotected

how to protect download link using html and javascript?


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


Solution

  • Use context menu event to prevent the menu from showing:

    document.getElementById('downloadThisPage').addEventListener('contextmenu', function (event) {
        event.preventDefault();
    
        return false;
    });