Site icon Learning & Doing

How to Disable copy paste in your web

tambahkan script berikut:

<script type=”text/JavaScript”>// <![CDATA[
<br />//courtesy of BoogieJack.com<br />function killCopy(e){<br />return false<br />}<br />function reEnable(){<br />return true<br />}<br />document.onselectstart=new Function (“return false”)<br />if (window.sidebar){<br />document.onmousedown=killCopy<br />document.onclick=reEnable<br />}<br />
// ]]></script>

Exit mobile version