Bagaimana
mencegah copy paste dan disable view page source ?
- Bagi pengguna WordPress dari dashboard, pilih appearance – theme editor – dan buka header.php.
- Bagi pengguna blogger dari dashboard, pilih theme - Edit Tema - cari bagian </head>
- Sementara pengguna Website buka template html anda dan cari bagian </head>
Copy script berwarna biru dibawah ini dan
tempatkan di dalam <head> atau sebelum penutup tag </head>
<head>
<!-- Kode
menampilkan peringatan untuk mengaktifkan javascript-->
<div
align="center"><noscript>
<div
style="position:fixed; top:0px; left:0px; z-index:3000; height:100%;
width:100%; background-color:#FFFFFF">
<div
style="font-family: Arial; font-size: 17px; background-color:#00bbf9;
padding: 11pt;">Mohon aktifkan javascript pada browser untuk mengakses
halaman ini!</div></div>
</noscript></div>
<!--Kode untuk
mencegah seleksi teks, block teks dll.-->
<script
type="text/javascript">
function
disableSelection(e){if(typeof
e.onselectstart!="undefined")e.onselectstart=function(){return
false};else if(typeof
e.style.MozUserSelect!="undefined")e.style.MozUserSelect="none";else
e.onmousedown=function(){return
false};e.style.cursor="default"}window.onload=function(){disableSelection(document.body)}
</script>
<!--Kode untuk
mematikan fungsi klik kanan di blog-->
<script
type="text/javascript">
function
mousedwn(e){try{if(event.button==2||event.button==3)return
false}catch(e){if(e.which==3)return
false}}document.oncontextmenu=function(){return false};document.ondragstart=function(){return
false};document.onmousedown=mousedwn
</script>
<style
type="text/css">
* : (input, textarea) {
-webkit-touch-callout:
none;
-webkit-user-select:
none;
}
</style>
<style
type="text/css">
img {
-webkit-touch-callout:
none;
-webkit-user-select:
none;
}
</style>
<!--Kode untuk
mencegah shorcut keyboard, view source dll.-->
<script
type="text/javascript">
window.addEventListener("keydown",function(e){if(e.ctrlKey&&(e.which==65||e.which==66||e.which==67||e.which==73||e.which==80||e.which==83||e.which==85||e.which==86)){e.preventDefault()}});document.keypress=function(e){if(e.ctrlKey&&(e.which==65||e.which==66||e.which==67||e.which==73||e.which==80||e.which==83||e.which==85||e.which==86)){}return
false}
</script>
<script
type="text/javascript">
document.onkeydown=function(e){e=e||window.event;if(e.keyCode==123||e.keyCode==18){return
false}}
</script>
</head>
Terima kasih 😊
Selamat mencoba & semoga bermanfaat.
0 Comments
Post a Comment