Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript [Solved] Remove Right-click on images Re: [Solved] Remove Right-click on images

#72799
noahgelman
Participant

Got it. Was very frustrating.

$('img').each(function() {
$(this)[0].oncontextmenu = function() {
alert('We're sorry. Right-Click is not available');
return false;
};
});