Article : Disable Copy and Paste HTML Coding
Friday, April 8, 2011
Add a gadget to html and java script:
Disable Copy and Paste Code :
<!-- Disable Copy and Paste-->
<script language='JavaScript1.2'>
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=
disableselect
document.onclick=reEnable
}
</script>
0 comments:
Post a Comment