Disable right click in order to use our blog visitors can not copy the content (Images, Icon, Widget) from our blog without permission. To disable right click follow the steps below:
1. Log into your Blog
2. Click the Layout
3. Click Add a Gadget
4. Click the options menu HTML / JavaScript
5. Paste the script below into the field provided
<script>
var message="Sorry, Right Click Disable in This Blog ";
///////////////////////////////////
function clickIE4(){if (event.button==2){alert(message);return false;}}
function clickNS4(e){if (document.layers||document.getElementById&&!document.all){if (e.which==2||e.which==3){alert(message);return false;}}}
if (document.layers){document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS4;}
else if (document.all&&!document.getElementById){document.onmousedown=clickIE4;}
document.oncontextmenu=new Function("alert(message);return false")
</script>
6. Please replace the red script with the words as you wish
7. Click Save
8. completed