Better a cruel truth than a comfortable delusion ...
Home Anime / e-Story Story Santai Tutorials All bout d Braces Relationship

Sunday, June 29, 2014

Cara Disable Highlight Text dalam Blog

tutorial ni simple jer....salah satu sebab buat disable highlight text dalam blog ialah untuk elak orang copy paste .....



jom tengok step :

1. Dashboard --> Layout --> Add a gadget --> Javascript/ HTML
*mana nak cari Edit HTML /Javascript, leh usha sini ---> LINK 

2. copy kod di bawah sehingga habis dan paste kan pada Javascript/ HTML  ..

<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> 

3. Save dan lihat hasilnya ...

^_^

credit 
Related Posts Plugin for WordPress, Blogger...