Answers for "how to get state of checkbox"

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 get state of checkbox"

Code answers related to "Javascript"

Browse Popular Code Answers by Language