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>
|