This tutorial is useful for those of you who want to protect your blog article from copy and paste. > Open your template > Find </head> tag and put this code above it : <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" } </script> HTML: > Find <body> tag and change with this code : <body oncontextmenu='return false;'> <script type='text/javascript'> disableSelection(document.body); </script> HTML: > Save your template > Done, check the result.
I never thought of this, but great advice, thanks for sharing. Could help stop the spammers and copycats.