How do I disable the copying of a picture from website? I mean if someone wants to copy an image from my website, the function will be disable so that one cannot copy it. Can that be done?
Disable copying a picture from website
Collapse
X
-
not really, if someone wants it all they have to do is hit "print page"
VodaHost
Your Website People!
1-302-283-3777 North America / International
02036089024 / United Kingdom
291916438 / Australia
------------------------
Top 3 Best Sellers
Web Hosting - Unlimited disk space & bandwidth.
Reseller Hosting - Start your own web hosting business.
Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)
-
-
This is technically impossible because of the way an Internet browser works:
Before an image can be displayed in the browser it is copied to the users harddisk/memory, so even if you disable the right click or whatever, the image is already in the browser's cache making it easy to copy it to any location you want. Internet Explorer even has a nice Image toolbar which popups when you move your mouse over an image, making it very easy to steal your images.
If all you want to do it disable the right mouse click, add this code to your page (using the insert HTML tool):
<script language="JavaScript">
<!--
function NoRig***lick(e)
{
if(navigator.appName=="Netscape")
{
if(e.which==3||e.which==2)
{
return false;
}
}
else
{
event.cancelBubble=true;
event.returnValue=false;
}
}
if(navigator.appName=="Netscape")
window.captureEvents(Event.MOUSEDOWN)
document.oncontextmenu=NoRig***lick;
window.onmousedown=NoRig***lick;
// --></script>Forum Moderator
BlueVoda Spe******t
Comment
-
-
Well said Pablo, Can you do all the ladies in the forum a favour and upload your picture again.
VodaHost
Your Website People!
1-302-283-3777 North America / International
02036089024 / United Kingdom
291916438 / Australia
------------------------
Top 3 Best Sellers
Web Hosting - Unlimited disk space & bandwidth.
Reseller Hosting - Start your own web hosting business.
Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)
Comment
-
-
hmmm not sure about that Sarah.......still think you the better looking one of the lot!www.bluevodaexchangelink.com
BluevodaExchangeLink Help Center
Bluevodaexchangelink Forum
The only place for bluevoda site to be linked with!
Comment
-
Comment