Modify ↓
Ticket #4686 (closed bug: duplicate)
jquery 1.3.2 append(' ', ' ') crashes ie6, ie7
| Reported by: | huftlb | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 1.4 |
| Component: | core | Version: | 1.3.2 |
| Keywords: | ie6 ie7 | Cc: | |
| Blocking: | Blocked by: |
Description
the following snippet crashes ie6 and 7, throws a js error in ie8:
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
</head> <body>
<script type="text/javascript">
$(document).ready(function() {
$('body').append('b', 'e');
});
</script>
</body>
</html>
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.

Dup of #4011