how to check a checkbox is checked or not code example
Example 1: checkbox is not getting checked
<input type="checkbox" name="free" value="mon09" onClick="this.checked=!this.checked;">
Example 2: if checkbox is checked
if ($('#id_input').is(':checked')) { }