Como activar boton con checkbox
AUTOR PREGUNTA #1
-
5 personas más tuvieron esta duda Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
<script> function checar() { if (boton.disabled == false) { boton.disabled = true; } else { boton.disabled = false; } } </script> <form> <input type="checkbox" onchange="javascript:checar()" /> <input type="button" id="boton" value="Aceptar"/> </form>