I’m using jQuery to add a new row of textboxes.
The code won’t work even if there is no error when I opened the developer tool.
Click Here to view the sample of what I’ve made.
I’m using:
$(document.createElement('tr')).attr('id', 'textbox_holder_' + family_rel_counter);
Your selector is wrong
should be
because it’s an ID
http://jsfiddle.net/sEQXu/