Luis Flores

Generation

class from descriptionThu, 25 May 2023

desbloquear inputs apartir de un checkbox

function habilitar(form) { if (form.checkeado.checked == true) { form.nombre.disabled = false; form.password.disabled = false; } else { form.nombre.disabled = true; form.password.disabled = true; } }

Javascript
Generate More

Want to kickstart your project?Use the new AI Studio to create your code