[jQuery入門] マウスの右クリックを禁止する方法

サンプルコード:
$(function(){
$(document).bind(“contextmenu",function(e){
return false;
});
});

JavaScript

Posted by arkgame