Bug Tracker

Ticket #1329 (closed bug: worksforme)

Opened 1 year ago

Last modified 1 year ago

Appending TableData cell to a TableRow only inserts the content of the cell

Reported by: Justise Assigned to: brandon
Type: bug Priority: major
Milestone: 1.1.4 Component: core
Version: 1.1.3 Keywords: table manipulation
Cc: Needs: Test Case

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

jQueryTest.html (0.7 kB) - added by Justise 1 year ago.

Change History

Changed 1 year ago by Justise

Changed 1 year ago by john

  • need changed from Review to Test Case
  • owner set to brandon
  • version changed from 1.1.2 to 1.1.3
  • milestone changed from 1.1.3 to 1.1.4

Changed 1 year ago by brandon

  • status changed from new to closed
  • resolution set to worksforme

This works for me in Firefox, Safari and IE. Feel free to reopen with some more specifics in how to reproduce the issue.

Note: See TracTickets for help on using tickets.