Disable Hightlight Text
Rabu, 07 September 2011 | 01.31 | 0 comments
Disable highlight text itu maksudnya :
orang gk bisa hightlight di Entry kamu

Mau ? Cekidot

Dashboard > Design > Add Gadget > HTML/JavaScript
Copy Kode ini di kolom HTML/JavaScript kamu :
<script type="text/javascript">function disableSelection(target){if (typeof target.onselectstart!="undefined") //IE routetarget.onselectstart=function(){return false}else if (typeof target.style.MozUserSelect!="undefined") //Firefox routetarget.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>
Save

Older Post | Newer Post