Hi All, Can I disable right click on my web page without using javascript because most of the browser allow the user to disable javascript.
|
|
|||||||
|
|
|
DON'T Just, don't. No matter what you do, you can't prevent users from having full access to every bit of data on your website. Any Javascript you code can be rendered moot by simply turning off Javascript on the browser (or using a plugin like NoScript). Additionally, there's no way to disable the ability of any user to simply "view source" or "view page info" (or use wget) for your site. It's not worth the effort. It won't actually work. It will make your site actively hostile to users. They will notice this and stop visiting. There is no benefit to doing this, only wasted effort and lost traffic. Don't. |
||
|
|
|
|
Of course, as per all other comments here, this simply doesn't work. I did once construct a simple java applet for a client which forced any capture of of an image to be done via screen capture and you might like to consider a similar technique. It worked, within the limitations, but I still think it was a waste of time. |
||
|
|
|
|
If your aim is to prevent people being able to download your images, as most people have said, disabling right click is pretty much ineffective. Assuming you are trying to protect images the alternative methods are - Using a flash player, users, can't download them as such, but they could easily do a screen capture. If you want to be more akward, making the image the background of a div, containing a transprent image, a la -
will be enough to deter the casual theft of your images (see below for a sample), but as with all these techniques, is trivial to defeat with a basic understanding of html. |
||
|
|
|
|
First, you cannot achieve this without using a client side capability. This is where the javascript runs. Secondly, if you are trying to control what an end user can consume from your site, then you need to rethink how you display that information. An image has a public url that can be fetched via HTTP without the need for a browser. Authentication can control who has access to what resources. Embedded watermarking in images can prove that the image was from a specific person/company. At the end of the day, resource management is really user/guest managment. The first rule of the Internet, if you dont want it taken, dont make it public! The second rule of the Internet, if you dont want it taken, dont put it on the Internet! |
||
|
|
|
|
You can do so with Javascript and/or an HTML attribute (which is really a Javascript event handler anyway) as described here:
and
That being said: DON'T DO IT. Why? Because it achieves nothing other than annoying users. Also many browsers have a security option to disallow disabling of the right click (context) menu anyway. Not sure why you'd want to. If it's out of some misplaced belief that you can protect your source code or images that way, think again: you can't. |
||||||
|
|
|
You cannot accomplish what you're asking without using Javascript. Any other technology you may choose to use can only help to compose the web page on the server side to be sent to the browser. There simply is no good solution, and there is no solution period without Javascript. |
||||||
|
