1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=windows-1250">
<meta name="generator" content="PSPad editor, www.pspad.com">
<title></title>
<script type="text/javascript">
function verifLength(myObject){
if( (myObject.value.length % 10) == 0)
{
myObject.value += ""
}
}
</script>
</head>
<body>
<textarea type="text" style="word-wrap:break-word" onkeyup="verifLength(this)" onkeydown="verifLength(this)" name="test"></textarea>
</body>
</html> |
Partager