Answers for "how to make a check box checked"

7

how to set checkbox checked

<input type="checkbox" name="vehicle3" value="Boat" checked>

#If if helps you give it Thumbs up
Posted by: Guest on July-22-2020
0

get the state of a checkbox

function checkAddress()
{
    var chkBox = document.getElementById('checkAddress');
    if (chkBox.checked)
    {
        // ..
    }
}
Posted by: Guest on June-07-2020

Code answers related to "how to make a check box checked"

Browse Popular Code Answers by Language