Opened 16 years ago
Closed 16 years ago
#1329 closed bug (worksforme)
Appending TableData cell to a TableRow only inserts the content of the cell
Reported by: | Justise | Owned by: | brandon |
---|---|---|---|
Priority: | major | Milestone: | 1.1.4 |
Component: | core | Version: | 1.1.3 |
Keywords: | table manipulation | Cc: | |
Blocked by: | Blocking: |
Description
When I select a row and append to each row as follows, only the contents of the cell get appended.
$(document).ready( function() {
$("TR").append("<TD>4</TD>");
});
Results in the HTML <tr>
<td>1</td> <td>2</td> <td>3</td>
4</tr>
Obviously I was expecting <tr>
<td>1</td> <td>2</td> <td>3</td> <td>4</td>
</tr>
Attachments (1)
Change History (3)
Changed 16 years ago by
Attachment: | jQueryTest.html added |
---|
comment:1 Changed 16 years ago by
Milestone: | 1.1.3 → 1.1.4 |
---|---|
need: | Review → Test Case |
Owner: | set to brandon |
Version: | 1.1.2 → 1.1.3 |
comment:2 Changed 16 years ago by
Resolution: | → worksforme |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
This works for me in Firefox, Safari and IE. Feel free to reopen with some more specifics in how to reproduce the issue.