jquery를 통해서 오른쪽클릭 이벤트를 막는다.

 

$(document).ready(function(){
  document.oncontextmenu = function (e) {
    return false;
  }
});