how to do if check box checked code example
Example 1: how to set checkbox checked
#If if helps you give it Thumbs up
Example 2: if checkbox is checked
if ($('#id_input').is(':checked')) { }
Example 3: how to check if input is checked javascript
const cb = document.getElementById('accept');
console.log(cb.checked);