1. Désactivez la fonction clic droit
$(document). ready(function() {
$(document).bind("contextmenu",function(e) {
alert("désolé ! Pas de clic droit !");
return false;
});
});
2. Actualisation du bloc F5
$(document).ready(function() {
$(document).bind("keydown",function(e){
e=window.event| |e;
if(e.keyCode==116){
e.keyCode = 0;
return false; });