You are not logged in.

  • »imvucodes« is a verified user
  • "imvucodes" started this thread

Posts: 130

Location: Interwebs

Occupation: Serving code snippets non stop.

  • Send private message

1

Monday, July 12th 2010, 2:36pm

Disable Text Selection

This will prevent the user from selecting any text, phrases or words on the page. It will not work to select text on the page. But notice there might be problems with embedded flash objects and their highlighting.

Source code

1
2
3
4
5
6
7
<script type="text/javascript">
var copiedfrom='www.imvucodes.net';
  window.onload=function(){
    document.onselectstart=function(){return false;}
    document.onmousedown=function(){return false;}
  }
</script>

Rate this thread