1. 마우스 오른쪽 버튼 클릭 기능 비활성화
$(document).ready(function() {
$(document).bind("contextmenu",function(e) {
alert("죄송합니다. 마우스 오른쪽 버튼을 클릭하지 마세요!");
return false;
});
});
2. F5 새로고침 차단
$(document).bind("keydown",function(e){
e=window.event|e;
if(e.keyCode==116){
e.keyCode = 0;
return false; });