Bagi sesiapa yang tidak mahu entri mereka dicuri & cipypaste oleh orang.Tip ini boleh membantu anda malah nak highlight perkataan pun tidak boleh betapa berkesanya tip ini.Bagi sesiapa yang tidak sabar-sabar boleh ikut langkah dibawah ini.
Langkah 1
Langkah 1
Copy kode dibawah ini.
<script type="text/javascript">
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>
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>
No comments:
Post a Comment
Berkomentarlah di blog ini dengan baik
* Jangan mencantumkan link ex: http://xxx
* Untuk menampilkan emoticon, ketik kodenya ex: =))
Jangan sampai komentarmu masuk ke dalam SPAM!