JavaScript Program to Disable Mouse Right Click

Write a JavaScript program to disable mouse right click.



Source Code
<html>
<head>
    <title>Disable Mouse Right Click</title>
    <script>
        function disableRightClick(e)
        {
            alert('Right click disabled');
            return false;
        }
        function init()
        {
            document.oncontextmenu = disableRightClick;
        }
    </script>
</head>
<body onload="init()">
<h1>Right click on screen, Context menu is disabled</h1>
</body>
</html>
Output