Sometimes you want to restrict users from saving the images on your Web pages. Use the following code to disable the right click menu in the browser:
<html>
<head>Disable Right Click</head>
<body oncontextmenu="return false;">
Right Click is Disabled
</body>
</html>
</code></pre>