#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: | ||
Blocked by: | Blocking: |
Description (last modified by )
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 (1)
comment:1 Changed 14 years ago by
Description: | modified (diff) |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Misplaced in 'build' category. Bug was fixed long ago.