<html>
<head>
<script>
function restrict(obj,size)
{
var key = window.event.keyCode;
if(!(
key==8 //backspace
|| key==46 //delete
|| key==37 //left
|| key==38 //up
|| key==39 //right
|| key==40 //down
)&&(obj.value.length>=size))
window.event.returnValue = false;
}
function trim(obj,size)
{
obj.value = obj.value.substring(0,size);
}
</script>
</head>
<body>
<form name="frm">
<textarea id="txt" onkeydown="restrict(this,10);" onchange="trim(this,10);"></textarea>
</form>
</body>
</html>
No comments:
Post a Comment