Right click is disable for all browser

Disable Right Click for all Browser

<html>
<head>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
    <script type="text/javascript">
        $(document).ready(function() {
            $(document).bind("contextmenu", function(e) {
                alert('Right click is disabled');
                e.preventDefault(); //or  return false; //
            });
        }); 
    </script>
</head>
<body>
</body>
</html>
Right click is disable for all browser Right click is disable for all browser Reviewed by Bhaumik Patel on 8:22 PM Rating: 5