I have the following html code:\[code\]<tr> <td class="right"> <label class="input-control tiny-checkbox" onclick=""> <input type="checkbox" value="http://stackoverflow.com/questions/14535605/0"/> <span class="helper"></span> </label> </td> ...\[/code\]I have the following jQuery code:\[code\]$("table tbody tr td").click(function () { var col = $(this).parent().children().index($(this)); var row = $(this).parent().parent().children().index($(this).parent()); if (col == 0) { // col checkbox -> highlight the line (on/off) var checked = $(this).children(':checkbox').is(':checked');\[/code\]The checked var is never true even if the ckeckbox is checked. I don't know why.Any idea?