![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
22/05/2003, 18:33
|
![Avatar de bakanzipp](http://static.forosdelweb.com/customavatars/avatar10453_1.gif) | | | Fecha de Ingreso: noviembre-2001 Ubicación: santiago de shilli
Mensajes: 2.554
Antigüedad: 23 años, 2 meses Puntos: 0 | |
Código:
...
<script language=javascript>
function validar()
{
if (document.formulario.numero.length<7)
{
alert("Debe ingresar como minimo 7 digito")
document.formulario.numero.focus();
}
}
</script>
...
...
...
<input type=text value=numero maxlength=7 size=10 onfocus="javascript:validar();">
|