Modify ↓
Ticket #1072 (closed bug: fixed)
problem with append in IE6
| Reported by: | tonyt | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 1.1.3 |
| Component: | build | Version: | 1.1.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description (last modified by dmethvin) (diff)
The flowwing result in IE 6 creates two tbody elements, while in FF does not. <script type="text/javascript">
$(document).ready(
function() { t = document.getElementById("scroll1");
var tbody = document.createElement("tbody");
t.appendChild(tbody); bDiv = document.createElement("div") $(bDiv)
.css({ padding: "0px", margin: "0px", overflow: "auto"}) .append(t)
alert($(bDiv).html());
} );
</script> ..... <body> <table id="scroll1" class="scroll" cellpadding="0" cellspacing="0"> </table> .....
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Misplaced in 'build' category. Bug was fixed long ago.