Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/10/2005, 09:28
Avatar de Saruman
Saruman
 
Fecha de Ingreso: mayo-2003
Ubicación: Panama city, Panama, Panama
Mensajes: 1.154
Antigüedad: 21 años
Puntos: 5
Código HTML:
<form name="tuform" method="post" onsubmit="return validar(this)">
<input type="text" value="" name="mytext">
</form> 
Código HTML:
<script>
function validar(f) {
if (f.mytext.value == "") {
  alert("debes colocar algo antes de grabar.")
  f.mytext.focus();
  return false
}
 
return true
}
</script> 
__________________
Saruman

One Ring to rule them all, One Ring to find them, One Ring to bring them all and in the darkness bind them.