checked Attributechecked Attributechecked is declared on the elements: input type="checkbox", input type="radio"The checked attribute is a Boolean attribute
which when present indicates that the checkbox should initially be checked (for
input type="checkbox") or that the
radio button should initially be "on" (for
input type="radio").
For a checkbox, if the checked attribute is not present, the checkbox should be initially unchecked.
For a set of radio buttons (all having the same name attribute), it is invalid to
have more than one button "on" at any one time so only one radio button within the set should be assigned the checked
attribute. In fact, the
*HTML 4 specification for radio buttons
states that one radio button of a set should always be designated as initially "checked".
See also the selected attribute.