user3664791
user3664791

Reputation: 79

How to Disable the CTRL+P and Right click in all browsers and i want to display the print button for tracking user?

How to Disable the CTRL+P and Right click in all browsers and i want to display the print button.if the user clicks print button then only it will work. how to achieve this ?

Upvotes: 0

Views: 3063

Answers (1)

Namita
Namita

Reputation: 56

To disable right click, write below line of code:

 document.oncontextmenu = document.body.oncontextmenu = function() {return false;}

To disable ctrl+P, write below lines of code:

  jQuery(document).bind("keyup keydown", function(e){
    if(e.ctrlKey && e.keyCode == 80){
        return false;
    }
});

Upvotes: 1

Related Questions