22/01/2002, 19:08
|
Usuario no validado | | Fecha de Ingreso: julio-2001
Mensajes: 766
Antigüedad: 23 años, 5 meses Puntos: 0 | |
Re: text area con contador descendente seria algo asi
<script language="jscript">
function limite(que,cuanto)
{
var v=que.value
if(v.length>=cuanto)
que.value=v.substring(0,cuanto)
else
document.reduce.cont.value=cuanto-v.length
}
</script>
<form name="reduce">
<textarea onKeyPress="limite(this,100)" onblur="limite(this,100)" name="registro" rows=15 cols=45 ></textarea>
<input name="cont" type="text" size="3" value="100">
</form> |