Answers for "how to target all checkbox in javascript to check or not"

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 target all checkbox in javascript to check or not"

Code answers related to "Javascript"

Browse Popular Code Answers by Language