tienes unos nombres mal escritos estan separados cuando deben ir juntos
Código javascript
:
Ver originalfunction autorizo(elemento)
{
if (document.getElementById("sia").getAttribute("checked") == true )
{
document.getElementById("envio").setAttribute("disabled",false);
}
else
{
document.getElementById("envio").setAttribute("disabled",true);
}
}
chec ked es
checked
dis abled es
disabled
Prueba asi y comentas
Sino te funciona prueba asi
Código javascript
:
Ver original<input type="checkbox" name="sia" id="sia" class="boxinput" onClick="autorizo();">
Que estes muy bien