Hi
I have <td id="checkb1" class="checkba">
I want to get the value of the id when I click on
$('.checkba').click(function() {
var my_var = $('.checkba').attr('id');
alert(my_var);
});
The alert shows checkba not the id, checkb1.
Appreciate all assistance.
Thanks Jean