Answers for "disable button if no checkbox selected"

2

how to enable button after checked

<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-->
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 "disable button if no checkbox selected"

Browse Popular Code Answers by Language