vote up 1 vote down star

I want to inactive selecting & copying text in html page. when I used Javascript & inactive right click user can use Ctrl+V!!

flag
+1 - I disagree with folk who are downvoting this simply because they don't like it when web sites do this - sometimes web customers demand the programmer do things like this. No point punishing the person asking the question. – Bork Blatt Jun 29 at 8:07
While I agree that this is a bad thing to do 99% of the time, that's no reason to down vote it. +1 accordingly. – Kevin Montrose Jun 29 at 8:07

4 Answers

vote up 0 vote down check

Try this:

http://codesnippets.joyent.com/posts/show/515

link|flag
It's important to note that the user can simply turn off Javascript, but this will work for those that do not. – AlbertoPL Jun 29 at 8:09
3  
It's only going to annoy people, I advise against even trying. Seriously. – colithium Jun 29 at 8:19
vote up 0 vote down

While I agree in principle with the other posters that trying to do this may annoy the user, sometimes a manager or customer demands that this be done, and so an answer needs to be supplied.

Check out this page on www.dynamicdrive.com that will supply you with a few JavaScripts towards this end. Specifically see "Disable Text Select Script" and "No right click script".

link|flag
1  
It would be better to explain to the manager or customer why it is a very bad idea to try to prevent this. – Sander Marechal Jun 29 at 8:09
1  
True - and this is the approach I try - but sometimes they put their foot down, and then you have no choice. – Bork Blatt Jun 29 at 8:13
vote up 6 vote down

You can't. Don't even try. Don't annoy your users.

If you put it publicly on the web, it can be copied. Technically, it already is copied as soon as the user sees it. As colithium pointed out, all the techniques can be circumvented. Heck, you can look at the source code. You can curl the raw data from the command line, no JS/IMG/layer hack can prevent that.

link|flag
vote up 3 vote down

There is no full proof solution. You can play javascript games (easy to turn off). You can place invisible layers about the text so it can't be selected easily (easy to view source). You can use images instead of text (just bad).

link|flag
Full proof solution = Do not put it online. :) – epascarello Jun 29 at 13:26

Your Answer

Get an OpenID
or

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