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?
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?
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
07031847328 / United Kingdom
------------------------
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 Specialist
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
07031847328 / United Kingdom
------------------------
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)
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!
Great! Now Pablo, how do I do the inset on the page? :)
Use the Insert HTML tool.Originally Posted by allan
Forum Moderator
BlueVoda Specialist
HI... I've tried to follow the script for disabling right click properties but i still get the save icon coming up. how do i remove that as well?
You can't do that from your webpage, it's a feature of Internet Explorer.
Menubar: Tools|Internet Options|Advanced|MultiMedia|Enable Image Toolbar
Forum Moderator
BlueVoda Specialist
There are currently 1 users browsing this thread. (0 members and 1 guests)