Posted by Gιrard Talbot on 01/01/06 01:56
scully wrote :
> hi all
> I have a tag that i use to stop users stealing images from a sight
> that uses java script tag as per following:
You're most likely annoying all your visitors but definitely not
preventing them from stealing images.
Alt.html FAQ: How do I disable the mouse right-click?
http://www.html-faq.com/scriptingbasics/?disablerightclick
> <script language=javascript>
> <!-- Begin
> function right(e) {
> var msg = "Right clicking has been disabled on this website to protect
> copyright of the displayed images.";
> if (navigator.appName == 'Netscape' && e.which == 3) {
> alert(msg);
argh... and it's bad script on top of all that.
> return false;
Scul,
1- edit a copyright statement,
2- then put a link to it in your page footer of all your pages,
3- then remove all of your right-click-disableing stuff
this is the best and most suitable way to deal with the issue. I would
tell you exactly the same thing if you were having a privacy problem or
an accessibility policy.
If you really do not want someone to steal your images, then do *not*
upload them anywhere on your website.
GΓ©rard
--
remove blah to email me
[Back to original message]
|