DISABLE RIGHT CLICK


==========
Example: Disable "right click" to visitors of your site.
(this was squarespace)
In  Header Code Injection put:

<script src="http://ajax.googleapis.com/ajax/libs/jquery

/1.3.2/jquery.min.js" type="text/javascript"></script>

<script type="text/javascript" language="javascript">

$(function () {

$(this).bind("contextmenu", function (e) {

 e.preventDefault();

});

});

</script>
==========

<script type="text/javascript">
//<![CDATA[
/* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Disable context menu on images by GreenLava (BloggerSentral.com)
Version 1.0
You are free to copy and share this code but please do not remove this credit notice.
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */
    function nocontext(e) {
        var clickedTag = (e==null) ? event.srcElement.tagName : e.target.tagName;
        if (clickedTag == "IMG") {
            alert(alertMsg);
            return false;
        }
    }
    var alertMsg = "Image context menu is disabled";
    document.oncontextmenu = nocontext;
//]]>
</script>
==========