Tested on Google Chrome 21.0.1180.75 and .79
<table> <input type="checkbox" name="n" value="v" checked="checked" /> </table>
The absence of <tr><td></tr></td> around the input element causes the checked flags to not appear as checked. In addition, when submitting a form, these flags are not displayed on the server side as verified!
After the html is formatted correctly, the flags should be checked as indicated by the checked attribute:
<table> <tr> <td> <input type="checkbox" name="n" value="v" checked="checked" /> </td> </tr> </table>
Dave T.
source share