jq('#table1')
.append(jq('<tr>')
.append(jq('<td>')
.append('data1'
)
)
);
I want to append more than one <td>
to my current <tr>
, each of these <td>
has different format, so I can not just use a for loop to create bunch of <td>
. The ( )
in this case is very tricky, anybody got an idea how this might work?
By each of these <td>
has different format, I mean that I need to add $ to some of the cells that representing money, etc.