//Disable right mouse click Script
//By Maximus (maximusatnsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com
var message="Function Disabled!";
///////////////////////////////////
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;
}
Pressing CNTL-A (this will select everything on the webpage), CNTL-C (copy) and then going into Frontpage and pressing CNTL-V (paste) into a new page. This will copy the images and everything else.
Looking in the temporary internet cache and locating the image there - since all pages / images are usually stored on a user's machine for a few days.
Doing a Print Screen or Copy Screen
Another way around this would be to type into your browser:
view-source:http://www.htmlcodetutorial.com
You can consider placing a watermark on the image which will help some.
Some people also slice the image in a few pieces. This won't help, but might make it more difficult for someone to copy your image(s).
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum