javascript thread: RE: Javascript problem
thinking around your code, i chose this function:
<!--
function check(){
if(document.choix.date.value.length==2){document.choix.date.value =
document.choix.date.value+"/";}
if(document.choix.date.value.length==5 ){document.choix.date.value =
document.choix.date.value+"/";}
}
-->
</script>
</head>
<body>
<form name="choix">
<input type="text" name="date" size="9" value="" maxlength="10"
onkeypress="check()">
thanks...
|





