Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
JQuery: How to select rows from a table

I want to select specific rows of a table based on certain conditions using jquery. For example, If a table has 25 rows with a checkbox column to check each row, I want to specify a condition and if that condition is true, then only the checkbox should be checked, for example, 5 rows satisfy that condition, so only 5 rows should be checked. This selection may be dependent on other columns of the table. How do I achieve this with jquery?

share|improve this question

migrated from programmers.stackexchange.com Dec 15 '12 at 14:51

marked as duplicate by Jim G., Mario, DocMax, NullPointerException, Neolisk Dec 16 '12 at 2:58

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

You need something like this,

var chkbox = $('#yourTableId tr').eq(indexOfRowYouWant).find(':checkbox').attr('checked', true);
share|improve this answer
$( 'tr', table ).each(function () {

    this // refers to the current TR element

    // check if the condition is met for this row
    var conditionMet = ...

    // and set the checked state accordingly 
    $( '.checkbox', this )[0].checked = conditionMet;

});

where table is a reference to your TABLE element, and "checkbox" is the class of the <input type=checkbox> element within each row.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.