Reading Checkbox-Value from Table
Reading Checkbox-Value from Table
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
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
This discussion has been closed.
Replies
[code]
$('input:checked', mp3.fnGetNodes()).each(function () {
value+= $(this).val() + ",";
}
[/code]