11
I have a dynamically generated table, and I want to put a input
within each td
. I can get the id of the tr
, then I do:
$("#id").children().html("<input type='text' value='" + valor + "' />");
So he puts a input
within each td
that tr
, but I don’t want him to put the input
last td
, how can I do this?