Logo

Office Address

123/A, Miranda City Likaoli
Prikano, Dope

Phone Number

+0989 7876 9865 9

+(090) 8765 86543 85

Email Address

info@example.com

example.mail@hum.com

How to Disable Mouse Right Click using jQuery

How to Disable Mouse Right Click using jQuery

To Prevent Content theft right-click disable players a mail role this is the common issue faced by website and blog owners. This can be controlled by disabling right-click on websites. Disabling mouse right-click will prevent the context and inspect the codes of the website, thereby preventing the page contents from being copied. with the help of jquery and javascript, the disable of right-clicking can be implemented. 

Disable Right Click on Website:

You can avoid copying the contents of your website in two ways. One is to disable the right-click context menu altogether and the other is to simply disable the cut, copy and paste operations.

1) To disable the right-click event on the entire web page, use the below script,

<script type="text/javascript">
$(document).ready(function(){     
    $(this).on('contextmenu', function(e){
        e.preventDefault();
    });
});
</script>


2) To disable the context menu on the mouse right-click only on part block or element, use the element id, class, or the element itself. use the below script 

<script type="text/javascript">
$(document).ready(function(){
    $('#id').on('contextmenu', function(e){
        e.preventDefault();
    });
});
</script>

3) To disable right-click context menu on the whole page but except on the editable element like text,text area, use the below 

<script type="text/javascript">
$(document).ready(function(){
    $(this).on('contextmenu', function(e){
        if(e.target.nodeName != "TEXTAREA"){
            e.preventDefault();
        }
    });
});
</script>

 

Tags

  • Disable right click javascript w3schools

  • How to disable right click in HTML using javascript

  • How to disable right click on div

  • Disable right-click and f12 jquery
  • Disable right click on the browser using jquery
  • How to disable right click in HTML using CSS

  • How to disable right click in embed tag using javascript

  • disable right click jquery

Related Posts

Would You Like to Exchange Guest Posts with Us? Unlock the Benefits of Guest Post Services

Would You Like to Exchange Guest Posts with Us? Unlock the Benefits of Guest Post Services

Guest posting has become one of the most effective strategies for building online visibility, authority, and driving organic traffic. By exchanging guest posts, businesses and bloggers can leverage ea

Read More
Building Your Online Alumni Community: A Step-by-Step Guide to Success

Building Your Online Alumni Community: A Step-by-Step Guide to Success

Are you looking to create a thriving online community for your alumni? Whether you're starting from scratch or revamping an existing network, having a step-by-step plan can greatly increase your c

Read More
Why Every Travel Agency Needs a Custom Website Design

Why Every Travel Agency Needs a Custom Website Design

Everyone enjoys travel and travel becomes a hobby to the peoples over all the world. Travelers are increased repeatedly. While the initial thoughts of the journey arise in the mind, Peoples will sourc

Read More