[기타] F12 키코드 막기
<script type="text/javascript">
$("body, html").keydown(function(){
if(event.keyCode == 123){
return false;
}
});
</script>