My site: etherealoasis.co
My theme: Dawn
I currently have all right-clicking disabled on my site with the following javascript code in global.js file:
document.addEventListener('contextmenu', function(e) {
e.preventDefault();
alert('Right-click has been disabled on this site. Please contact info@etherealoasis.co if you need further assistance.');
});
I’d like to remove this and add code to disable right-clicking on images only, so that visitors can still right-click to copy/paste or to open links in a new window, etc., but to not be able to right-click on images.
Thanks in advance for any assistance!