Disable right-click on images

Because it took me so bloody long to find this code online and make it work with what I wanted, I’m documenting it here.


<b>javascript</b>
document.oncontextmenu = window.oncontextmenu = function(e) {
  var obj = (/msie/i.test(navigator.userAgent)) ? event.srcElement : e.target;
  if (obj.nodeName=="IMG" || obj.nodeName=="img")
    return false;
}

Just place that in the head of your HTML document and you should be good to go. Disables right-click on images only—it will work on the rest of the page.

Leave a Reply