Reading Checkbox-Value from Table

Reading Checkbox-Value from Table

kennykenny Posts: 1Questions: 0Answers: 0
edited March 2011 in General
Dear Forum, i have trouble to read a checkBox-Value from the Datatable. For examble:
My Table:

[code]



check1
Name2




Peter






[/code]

Is it possible to get the Value with the Name "check" and Value = 10 using JS/Jquery?
Excuse my Bad English Iam from Germany.

Best regarts
kenny

Replies

  • mirkecmirkec Posts: 8Questions: 0Answers: 0
    Is this ok?

    [code]
    $('input:checked', mp3.fnGetNodes()).each(function () {
    value+= $(this).val() + ",";
    }
    [/code]
This discussion has been closed.