HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> </head> <body> <h1>jQuery contextmenu() Method</h1> <p>Right click this paragraph</p> <button>Trigger contextmenu Event</button> <script> $(document).ready(function(){ $("p").contextmenu(function(){ alert("You right clicked."); }); $("button").click(function(){ $("p").contextmenu(); }); }); </script> </body> </html>
OUTPUT
×

Save as Private