(function () { __nocontext_timer_id = setInterval(function () { var c_img = $('.conteiner__wrapper img'); if (c_img != null && c_img.length > 0) { // 画像の右クリック禁止 c_img.on('contextmenu', function (e) { return false; }); // 画像のドラッグ&ドロップ禁止 c_img.on('mousedown', function (e) { return false; }); c_img.on('selectstart', function (e) { return false; }); } }, 60); })();