vote up 3 vote down star

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.

flag

Why do you want to prevent the user from right-clicking? – Steve Harrison Apr 10 at 8:22
Disabling right click isn't security, it's just annoying your users. Any browser that doesn't let you disable this is worthless, but sites that do it in the first place are terrible. – Dan Olson Apr 10 at 8:30
If you do not want your content taken, you should not post it on the web. :) Modern day browsers can even override JavaScript's ability to disable right click. Tools like Firebug/ Web Dev Toolbar make protection useless. – epascarello Apr 10 at 12:34

6 Answers

vote up 20 vote down check

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 2 vote down

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 -

<div style="background-image: url(YourImage.jpg);">
   <img src="transarent.gif"/>
</div>

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.

link|flag
vote up 6 vote down

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!

link|flag
vote up 5 vote down

You can do so with Javascript and/or an HTML attribute (which is really a Javascript event handler anyway) as described here:

<script language="javascript">
document.onmousedown=disableclick;
status="Right Click Disabled";
Function disableclick(e)
{
  if(event.button==2)
   {
     alert(status);
     return false;    
   }
}
</script>

and

<body oncontextmenu="return false">
...
</body>

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.

link|flag
its not really "javascript or html" , its only really "and", as the "html only" way will require javascript, which if is not available/disabled, will not run. – Kent Fredric Apr 10 at 8:28
( I know what you're saying, but its not 100% clear ) – Kent Fredric Apr 10 at 8:29
thanx a lot very clear instructions................. – vinay_rockin Apr 10 at 9:41
vote up 4 vote down

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.

link|flag
And even then its annoying for the users, not to mention easy to bypass. – Manos Dilaverakis Apr 10 at 8:16
I've only ever seen pages which have a modal popup saying 'right click is disabled', which then shows the right-click menu when you dismiss it. They also display the message when you scroll using trackpad, which is very annoying. – Pete Kirkham Apr 10 at 8:18
Yea, it's especially annoying since usually it's to prevent people from "stealing" images which are already on their harddrive, but all it does is prevent me from using Context Search: addons.mozilla.org/en-US/firefox/… . Those bastards... – Calvin Apr 10 at 8:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.