Quote:
Originally Posted by Elite_360_
Code:
<script>
document.oncontextmenu = function(e)
{
var target = (typeof e !="undefined")? e.target: event.srcElement
if (target.tagName == "IMG" || (target.tagName == 'A' && target.firstChild.tagName == 'IMG'))
{
alert('This image is protected by legal copyright and is the property of its owner');
return false;
}
}
</script>
|
Thank you very much for your time. Sincerely appreciated.
Jack