Sponsored Links

April 1, 2019

How to disable right click on web page using jQuery

There are certain ways to disable right click on web page. One of most common ways is using following jQuery code in the web page. Add following code at the end of body inside script tag. Note that it uses jQuery. So import jQuery first.

$(document).bind("contextmenu", function(e) {
     e.preventDefault();
});

No comments:

Post a Comment