“Cómo habilitar el botón después de verificar” Código de respuesta

Cómo habilitar el botón después de verificar


<input onclick="alert('thank you for agreeing to the terms and conditions')" type="submit" name="sendNewSms" class="inputButton" id="sendNewSms" value=" i agree to the terms and conditions " />

<input type="checkbox"  onchange="document.getElementById('sendNewSms').disabled = !this.checked;" />
<!--this will only work if u click the up arrow button on the right side--> 
Daiwikrox bruh

Cómo habilitar el botón después de verificar

<input type="submit" name="sendNewSms" class="inputButton" id="sendNewSms" value=" Send " />

<input type="checkbox"  onchange="document.getElementById('sendNewSms').disabled = !this.checked;" />
Donald Duck

Respuestas similares a “Cómo habilitar el botón después de verificar”

Preguntas similares a “Cómo habilitar el botón después de verificar”

Más respuestas relacionadas con “Cómo habilitar el botón después de verificar” en HTML

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código