Answers for "checkbox checked button enable"

1

how to enable a button when a checkbox is selected in javascript

<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;" />
Posted by: Guest on June-23-2021
0

disable checkbox click event

pointer-events:none
Posted by: Guest on July-16-2020

Code answers related to "checkbox checked button enable"

Browse Popular Code Answers by Language