Disable Text Selection In Blogger Blog Posts
* Just go on layout and click there on Add Gadget
omitformtags=omitformtags.join("|")
function disableselect(e){
function reEnable(){
if (typeof document.onselectstart!="undefined")
</script>
* Just go on layout and click there on Add Gadget
omitformtags=omitformtags.join("|")
function disableselect(e){
function reEnable(){
if (typeof document.onselectstart!="undefined")
</script>
If you want to disable text selection on your blog posts and you want no one can copy your blog post you have to follow some simple steps :-
* Click on HTML/JavaScript and just copy the full code given blow in content and click on save option
<script type="text/javascript">
var omitformtags=["input", "textarea", "select"]
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}
return true
}
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}
* And now no one can copy your Blog post you successfully disabled the text selection on your Blogger blog.
Tags:
Blogger