How to prevent Right Click option using jquery

前端 未结 12 2198
心在旅途
心在旅途 2020-12-02 11:23

Is it possible to prevent RIGHT CLICK option for IMAGES which we use in web page.

12条回答
  •  孤城傲影
    2020-12-02 11:48

    The following code will disable mouse right click from full page.

    $(document).ready(function () {
       $("body").on("contextmenu",function(e){
         return false;
       });
    });
    

    The full tutorial and working demo can be found from here - Disable mouse right click using jQuery

提交回复
热议问题