Suppose you have a check box, which is checked. In Chrome or Firefox, when you click inspect element, in the HTML you will see:
<input checked="checked" class="some-class" id="some-id" name="some-name" type="checkbox" value="some-value">
I expect, that when I click on the check box and uncheck it, the html will change and the checked
property will disappear:
<input class="some-class" id="some-id" name="some-name" type="checkbox" value="some-value">
However, that's not the case. Why?