Tuesday 4 March 2014

No select text and no copy data


 Copy this code and paste html and javascript  gadget

<!---    No copy data from blog --->
<script type="text/JavaScript">

//courtesy of BoogieJack.com

function killCopy(e){

return false

}

function reEnable(){

return true

}

document.onselectstart=new Function ("return false")

if (window.sidebar){

document.onmousedown=killCopy

document.onclick=reEnable

}

</script>