| Author |
Message |
True_Pits Super Senior Member

Joined: 19 Mar 2004 Posts: 1446
|
Posted: Tue Jan 11, 2005 6:56 am Post subject: Web Site Picture Theft |
|
|
I was emailed by a friend because they stole a picture off my site of a dog he bred. The red nose dog between the flags, I guess I really do need to protect my images by not allowing the right click. Too bad I don't know how yet.
Not to mention their little info
"Although our dogs come from a champion blood line they are not people or animal agressive."
Does this make sense to anyone????? Because it doesn't to me. Maybe some one should also inform them that Pit is only spelled with the one T. And then they have that Vicious looking dog below all this after saying they aren't aggressive.
Sorry for ranting, but I'm tired of people stealing my images. |
|
| Back to top |
|
 |
Auspetian Site Admin

Joined: 10 Mar 2004 Posts: 612 Location: Australia
|
Posted: Tue Jan 11, 2005 2:26 pm Post subject: |
|
|
Simple,
Add the following to any of your page's body tags.
oncontextmenu="return false"
example:
<body oncontextmenu="return false">
This will disable the mouse's right click menu over your pages.
Hope this helps…  |
|
| Back to top |
|
 |
Auspetian Site Admin

Joined: 10 Mar 2004 Posts: 612 Location: Australia
|
Posted: Tue Jan 11, 2005 2:44 pm Post subject: |
|
|
If you don't have full access to your page body tag then add the folowing script to your page content (it will not show on the page but will disable right click):
Copy and paste to your page everything in red.
<script language=JavaScript>
<!--
//Disable right mouse click Script
var message="These images are copyrighted !";
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("alert(message);return false")
// -->
</script> |
|
| Back to top |
|
 |
True_Pits Super Senior Member

Joined: 19 Mar 2004 Posts: 1446
|
Posted: Thu Jan 13, 2005 6:16 pm Post subject: |
|
|
Thanks! That really helps a lot!  |
|
| Back to top |
|
 |
|