Opened 14 years ago
Closed 14 years ago
#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: | |
Blocked by: | Blocking: |
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>
Note: See
TracTickets for help on using
tickets.
Dup of #4011