I have a table where i can add rows using clone function like this:
new_row = $(table_id+' tbody > tr:last').clone(true).removeAttr('id').insertAfter(table_id+' tbody > tr:last');
each row have special cell which content creates manualy like this:
$(new_row).children('.action_2').html('<a class="row_delete"><img src="/images/pack/cross.png" alt="Cancel" /> Cancel</a>');
The problem is that function $('.row_delete').click(function(){...}) is not working with this dynamically added rows, what's wrong?
.html()wipes out all event handlers. Try using.live()as suggested by one of the below answers. – scurker Jun 20 '11 at 19:40