Jul 29, 2012
Tutorial #3: Disable copy text tanpa amaran.
By: Ichi Fighting
Sunday, July 29, 2012
0 Comment
- Dari Dashboard -> Design -> Page Elements -> Add a Gadget -> HTML/JavaScript.
Step 2
- Copy code kat bawah pastu paste dalam HTML/JavaScript.
<script type="text/javascript">Step 3
//form tags to omit in NS6+:
//http://eking.in
var omitformtags=["input", "textarea", "select"]
omitformtags=omitformtags.join("|")
function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}
function reEnable(){
return true
}
if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}
</script>
- Save.
- Siap.
Subscribe to:
Post Comments
(
Atom
)
No comments :
Post a Comment