| I agree with Dane. How much can your images really be worth? If they really are a commodity watermark them and use low res versions ...
Nico On 20 Apr 2008, at 8:29 PM, Dane Harmon wrote: By implementing that, you may find that people aren't swiping your images because they no longer care to visit your site. There are a dozen+ actions I can perform with a right-click in a web browser - only a couple of them related to saving the images that have already been sent to my computer. Why frustrate people? You aren't (and can't) prevent folks from saving the images - you're just interrupting their browsing with obnoxious alert boxes. And you know what will happen after a month? Bots will come along and save those images to their Image Search cache regardless of your _javascript_.
- Dane
On Apr 20, 2008, at 1:50 PM, Robert Poland wrote: Hi,
Thanks for all the advice I've received on this subject.
I have a script that works well enough for now, see sample XHTML below.
However when the "alert" is fired I have to click on it twice to get rid of it.
I have removed chunks of code but can't seem to cure it.
Any ideas?
.....
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr"> <head> <title></title> </head> <script language="_javascript_" type="text/_javascript_"> function right(e) { var message="Sorry, this function is disabled. Borrowing the graphics from this site is a violation of copyright."; if (navigator.appName == "Netscape" && (e.which == 3 || e.which == 2)) { alert(message); return false; } else if (navigator.appName == "Microsoft Internet Explorer" && (event.button == 2 || event.button == 3)) { alert(message); return false; } return true; } document.> document.> if (document.layers) window.captureEvents(Event.mousedown); if (document.layers) window.captureEvents(Event.mouseup); window.> window.> </script> <body > <center>[ Try right-clicking the image and then the text link below ] <p> <img src=""http://_javascript_.internet.com/img/tjsbutton.gif">http://_javascript_.internet.com/img/tjsbutton.gif"> <p> <a href=""http://_javascript_.internet.com">http://_javascript_.internet.com">Text Link</a> <p> <font face="arial, helvetica" size="-2">Free _javascript_s provided<br> by <a href=""http://_javascript_source.com">http://_javascript_source.com">The _javascript_ Source</a> </font> </center> <p> </body> </html>
Bob Poland - Fort Collins, CO
_______________________________________________ Do not post admin requests to the list. They will be ignored. Web-dev mailing list (email@hidden) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/web-dev/email@hidden
This email sent to email@hidden
_______________________________________________ Do not post admin requests to the list. They will be ignored. Web-dev mailing list (email@hidden) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/web-dev/email@hidden
This email sent to email@hidden
|