Help me w/ this java please...
brandofamily
Registered Users Posts: 2,013 Major grins
I got this code here to augment my right click protection...
[php]<script language="JavaScript">
<!--
if (!isClass("gallery_1370050"))
document.oncontextmenu = rightProtect;
function rightProtect(e)
{ if (window.event)
{ var srcEl = event.srcElement ? event.srcElement : event.target; }
else
{ var srcEl = e.srcElement ? e.srcElement : e.target; }
if (srcEl.tagName.toLowerCase() == 'img') {
window.alert(rightClickWarning);
return false; }
else
{ return true; } }
var rightClickWarning = "All images on this site are the sole property of Anthony Brandolino- Brandolino Imaging, unless otherwise noted and subject to protection under copyright and other intellectual proprty law. All unauthorised use is prohibited. Refer to the 'All Rights Reserved' link below.";
//-->
</script> [/php]
I was given the 1st line to allow that gallery to be right clickable for my family. How do I add another gallery to that 1st line so I can have multiple exclusions to the code....
Heres' the gallery number I want to add "1629121"
[php]<script language="JavaScript">
<!--
if (!isClass("gallery_1370050"))
document.oncontextmenu = rightProtect;
function rightProtect(e)
{ if (window.event)
{ var srcEl = event.srcElement ? event.srcElement : event.target; }
else
{ var srcEl = e.srcElement ? e.srcElement : e.target; }
if (srcEl.tagName.toLowerCase() == 'img') {
window.alert(rightClickWarning);
return false; }
else
{ return true; } }
var rightClickWarning = "All images on this site are the sole property of Anthony Brandolino- Brandolino Imaging, unless otherwise noted and subject to protection under copyright and other intellectual proprty law. All unauthorised use is prohibited. Refer to the 'All Rights Reserved' link below.";
//-->
</script> [/php]
I was given the 1st line to allow that gallery to be right clickable for my family. How do I add another gallery to that 1st line so I can have multiple exclusions to the code....
Heres' the gallery number I want to add "1629121"
0
Comments
if (!isClass("gallery_1370050") && !isClass("gallery_1629121"))