disable right click on iframe

Viewed 342

I want to disable right click on iframe but my code is not working. any fix for this code or any alternate to disable right click on iframe pdf?

<html>
   <head>
      <title>Disable Context Menu</title>
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
      <script type="text/jscript">
         $('#myiframe').bind('contextmenu', function(e) {
         return false;
         }); 
      </script>
   </head>
   <body >
      <iframe id="myiframe" src="dummy1.pdf" width="528" height="473"  
         ></iframe>
   </body>
</html>
1 Answers
<script type="text/javascript">
  $('#myiframe').on('contextmenu', function() {
    return false;
  });
</script>

Also, try using the latest version of jQuery. The latest version of jQuery is 3.5.1.

Related