<html>
<head>
<title> New Document </title>
<script language="JavaScript">
function blockKey(item){
if(event.keyCode==9) {
item.focus();
space = " ";
item.selection=document.selection.createRange();
item.selection.text=space;
event.returnValue = false;
}
}
</script>
</head>
<body>
<textarea id="textField" onkeydown="blockKey(this);" cols="70" rows="10"></textarea>
</body>
</html>
[출처] : http://okjsp.pe.kr/
'프로그램 > Html & Js & Css' 카테고리의 다른 글
[펌] - 유용한 서브메뉴_02 (IE/파폭 지원) (0) | 2009.03.30 |
---|---|
[펌] - 유용한 서브메뉴_01 (IE/파폭 지원) (0) | 2009.03.30 |
fieldset tag (0) | 2009.03.30 |
테이블 테두리 얇게 하기 (0) | 2009.03.30 |
Modal Dialog 예제 (0) | 2009.03.30 |