i am getting all checkboxes that are in an html table using this code and i need to find the current row in the table from the current checkbox.
var checkboxes = $("form :checkbox");
for (i = 0; i <= checkboxes.length; i++) {
var checkbox = checkboxes[i];
///need to get current row in html table here
}