Side navigation
#1329 closed bug (worksforme)
Opened June 27, 2007 07:55PM UTC
Closed July 20, 2007 09:00PM UTC
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 (2)
Changed July 20, 2007 03:47PM UTC by comment:1
| milestone: | 1.1.3 → 1.1.4 |
|---|---|
| need: | Review → Test Case |
| owner: | → brandon |
| version: | 1.1.2 → 1.1.3 |
Changed July 20, 2007 09:00PM UTC by comment:2
| resolution: | → worksforme |
|---|---|
| status: | new → closed |
This works for me in Firefox, Safari and IE. Feel free to reopen with some more specifics in how to reproduce the issue.