How do i set the checkbox as unchecked in the HTML? I tried these and it always loads as checked
<input id="chkBox" checked type="checkbox" />
<input id="chkBox" checked=false type="checkbox" />
<input id="chkBox" checked="false" type="checkbox" />
I am able to modify the checked property via javascript.
You don’t do anything at all, it’s unchecked by default.