Prev Demo
How To Disable Right Click Or Context Menu Using Jquery
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script> </head> <body> <h3>Disabling right click or context menu on web page.</h3> <p>Try to right click and it will not work.</p> <script> $(function () { $(this).bind("contextmenu", function (e) { e.preventDefault(); }); $(this).bind("selectstart", function (e) { e.preventDefault(); }); }); </script> </body> </html>
Note: We DO NOT save your trial code in our database.
Output