The following gives me every rows .tdSize. How do I ony get the row where I clicked on the checkbox ?
$(document).ready(function () {
$('.MyCheckBox').change(function () {
//if (this.checked) {
$(this).closest(".tdSize")
$('#MyTable tr').each(function () {
var size = $(this).find(".tdSize").html();
alert(size);
});
});