I'ld like to create a web page, from which no one can select the text
simply, copy frm there n paste at another location. In simple means,
i'ld like to stop copy process from my web page. Plz suggest
JavaScript code for this purpose.
You can't make it impossible. If it gets into your
browser as text (and not an image) then it's available
in so many ways (browser cache, view source, network
trace, file-save html page etc etc. So you really can't
prevent it in any fool-proof way. Even if you made it
an image, a basic graphics package can read it with an
OCR scan.
I have visited sites that do make attempts to stop
the simple users from doing it though. Some sites
try to catch the keypresses (control-C), or try to
detect attempts to highlight the text (capturing the
mouse drag events), or detecting the right-click
where people are trying to select "Copy".
It's probably not worth it though. The simple users
aren't going to do anything useful with your text.
The advanced users can get around whatever you do.