Hola amigos necesito bloquear un boton y necesito que se active despues de llenar todos los compo de texto anteriores
como logro esto?
saludos
| ||||
<html> <head> <title>Untitled</title> <script> liberar=[0,0,0,0]; function controlar(){ for(a=0;liberar[a]==1;a++){ } if(a!=liberar.length){return false;} } </script> </head> <body> <form action="javascript:alert('enviado')" onsubmit="return controlar()"> <input type="text" name="pepe" onblur="liberar[0]=(this.value!='')?1:0;"/><br /> <input type="text" name="pepe1" onblur="liberar[1]=(this.value!='')?1:0;" /><br /> <input type="text" name="pepe2" onblur="liberar[2]=(this.value!='')?1:0;" /><br /> <input type="text" name="pepe3" onblur="liberar[3]=(this.value!='')?1:0;" /><br /> <input type="submit" name="mandar" /> </form> </body> </html>
__________________ Cómo escribir No hay pregunta tonta, sino tonto que quiere seguir en la ignorancia. |