Hi,
i'm adding rows to table dynamically, but the problem is i'm not able to select or activate when i click on the added rows, bellow is my code. same code is working for static rows.
$('.dataGrid tr').bind('click', function(){
$('.dataGrid tr').removeClass('active');
$(this).addClass('active');
});
$('').appendTo(table) .append($('').text(pos.posId)) .append($('').text(pos.posName)) .append($('').text(pos.posAddress));
please help me..