Horje
disable right click jquery Code Example
disable right click jquery
//Disable mouse right click
$("body").on("contextmenu", function(e) {
  return false;
});
jquery source disable right click
<script type="text/javascript">
$(document).ready(function () {
    //to disable the entire page
    $("body").on("contextmenu",function(e){
        return false;
    });
    
    //to disable a section
    $("#id").on("contextmenu",function(e){
        return false;
    });
});
</script>




Javascript

Related
javascript remove diacritics Code Example javascript remove diacritics Code Example
bcrypt_lib.node not found Code Example bcrypt_lib.node not found Code Example
how to get the value of dropdown in jquery Code Example how to get the value of dropdown in jquery Code Example
object json jquery foreach Code Example object json jquery foreach Code Example
javascript location href target _blank Code Example javascript location href target _blank Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7