Ver Mensaje Individual
  #1 (permalink)  
Antiguo 24/03/2009, 08:02
Avatar de Killerx_8937
Killerx_8937
 
Fecha de Ingreso: noviembre-2006
Mensajes: 99
Antigüedad: 18 años, 1 mes
Puntos: 0
Sonrisa Activar checbox con textbox

Hola Amigos Nuevamente recurro a ustedes.

necesito habilitar un checbox cuando se agrege un valor a un textbox hice lo siguiente pero nada, no soy un experto en javascript solo conocimientos basicos.

Código PHP:
<script>
function 
activar()
{

if (
document.getElementById('KmFinal' ).value == "" )
{
document.getElementById('Entrega').disabled=true;
}

if (
document.getElementById('KmFinal' ).value <> "")
{
document.getElementById('Entrega').disabled=false;
}


}
</script>

<FORM method="POST">
<INPUT type="text" id="KmFinal"  onfocus="Activar()">  <INPUT type="checkbox" id="Entrega" disabled>
</FORM> 

alguna idea de antemano gracias...