Jquery/JS prevent right click menu in browsers

You can disable the right click by appending oncontextmenu=”return false;” to your body tag.

<body oncontextmenu="return false;">

Leave a Comment