Answers for "how to check the checked attribute value in javascript"

0

javascript get boolean if checkbox is checked

var checkbox = document.getElementById('checkbox');

if(checkbox.checked){
    console.log('test');
}
Posted by: Guest on January-27-2021
4

how to make checkbox checked in html

<input type="checkbox" checked={props.completed} /> 

#for props completed is true/false , hence if completed is false then checkbox will not be clicked .
# if the checkbox is true it will be will be checked
Posted by: Guest on August-05-2020

Code answers related to "how to check the checked attribute value in javascript"

Browse Popular Code Answers by Language