How to prevent image saving from right click in my web page??
HI everyone...
I'm making a webpage for my project and i want to implement this:
when a user click on my thumbnails, he/she gets a large image..But i don't want them to be able to save the images (both thumbnails and orignal one)when they right click..
please can anyone help with this? :(
Thanks for your attention and precious time!
Regards,
wakish
[396 byte] By [
wakish] at [2007-11-11 7:14:03]

# 1 Re: How to prevent image saving from right click in my web page??
document.oncontextmenu=function(){return false;}
this would disable the context menu on IE try this
# 2 Re: How to prevent image saving from right click in my web page??
document.oncontextmenu=function(){return false;}
this would disable the context menu on IE try this
This however doesn't prevent the person from saving the image.