Friday, May 28, 2021

Slip 3. Write a jQuery code to disable right click menu in html page.


 3. Write a jQuery code to disable right click menu in html page.

//slip3.html

 <!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
  
  <title>Disable right click menu in html page using jquery</title>
</head>
<script>
  $(document).bind("contextmenu",function(e){
  return false;
    });
 </script>
<body>
  <h1>If you click on this page<u> right click menu</u> will not be visible</h1>
</body>
</html>


Run slip3.html file on browser

//file:///C:/jquery/slip3.html

No comments:

Post a Comment

Slip 10. Write a jQuery code to make first word of each statement to bold.

  Slip 10. Write a jQuery code to make first word of each statement to bold.  <!DOCTYPE html> <html>   <head>     <scri...