Saturday, April 6, 2024
PHP

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>

(Visited 22 times, 1 visits today)
Baca Juga :  Cara Install LAMP Stack pada Linux Mint Cinnamon

Similar Posts