Cara Disable Copy Paste Pada Blog
Berikut ini adlah cara Disable Copy Paste di blog Silakan Menyimak
Langkah Pertama > Buka Blogger.com > Klik buka daftar entri
Langkah Kedua > Klik Tata Letak > Tambah Gadget > Klik HTML / java Script
Langkah Ketiga > Copa Kode Dibawah ini dan letakkan di halaman java script
<script type="text/javascript">
/***********************************************
* Disable Text Selection script-http://febriirawanto.blogspot.com/
***********************************************/
function disableSelection(target){
if (typeof target.onselectstart!="undefined") //IE route
target.onselectstart=function(){return false}
else if (typeof target.style.MozUserSelect!="undefined") //Firefox route
target.style.MozUserSelect="none"
else //All other route (ie: Opera)
target.onmousedown=function(){return false}
target.style.cursor = "default"
}
//Sample usages
//disableSelection(document.body) //Disable text selection on entire body
//disableSelection(document.getElementById("mydiv")) //Disable text selection on element with id="mydiv"
</script>
<script type="text/javascript">
disableSelection(document.body) //disable text selection on entire body of page
</script>
Semoga Bermanfaat Dan salam hangat untuk sobat blogger
By Febri Irawanto
Langkah Pertama > Buka Blogger.com > Klik buka daftar entri
Langkah Kedua > Klik Tata Letak > Tambah Gadget > Klik HTML / java Script
Langkah Ketiga > Copa Kode Dibawah ini dan letakkan di halaman java script
<script type="text/javascript">
/***********************************************
* Disable Text Selection script-http://febriirawanto.blogspot.com/
***********************************************/
function disableSelection(target){
if (typeof target.onselectstart!="undefined") //IE route
target.onselectstart=function(){return false}
else if (typeof target.style.MozUserSelect!="undefined") //Firefox route
target.style.MozUserSelect="none"
else //All other route (ie: Opera)
target.onmousedown=function(){return false}
target.style.cursor = "default"
}
//Sample usages
//disableSelection(document.body) //Disable text selection on entire body
//disableSelection(document.getElementById("mydiv")) //Disable text selection on element with id="mydiv"
</script>
<script type="text/javascript">
disableSelection(document.body) //disable text selection on entire body of page
</script>
Semoga Bermanfaat Dan salam hangat untuk sobat blogger
By Febri Irawanto
0 Response to "Cara Disable Copy Paste Pada Blog"
Post a Comment