쓰잘데기 없는 나의 블로그

onbeforeunload를 이용한 글 작성시 날림 방지 스크립트

이벤트 핸들러 모음 참조
http://elex.clus.org/tt/84

<script language="javascript" type="text/css">
<!--
    onbeforeunload = function (){
        var content = document.getElementById('Input or TextArea ID');
        if(content.value != 0){
           return "글 작성중입니다";
        }
    }
//-->
</script>

※ 나머지는 직접 작성하세요 ㅋㄷ