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...