#8354 closed bug (duplicate)
jquery-latest.min.js fails when run with IE 9.0.8080.16413
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | low | Milestone: | 1.5.1 |
Component: | manipulation | Version: | 1.5 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
SCRIPT438: Object doesn't support property or method 'getElementsByTagName' jquery-latest.min.js, line 16 character 59007
Repro source: <!DOCTYPE html> <html> <head>
<script src="http://code.jquery.com/jquery-latest.min.js"></script> <script src="http://ajax.microsoft.com/ajax/jquery.templates/beta1/jquery.tmpl.min.js"></script>
</head> <body> <script id="movieTemplate" type="text/x-jquery-tmpl">
<li><b>${Name}</b> (${ReleaseYear})</li>
</script>
<ul id="movieList"></ul>
<script>
var movies = [ { Name: "The Red Violin", ReleaseYear: "1998" }, { Name: "Eyes Wide Shut", ReleaseYear: "1999" }, { Name: "The Inheritance", ReleaseYear: "1976" }
];
/* Render the template with the movies data and insert the rendered HTML under the "movieList" element */ $("#movieTemplate").tmpl(movies) .appendTo("#movieList");
</script>
</body> </html>
Change History (3)
comment:1 Changed 12 years ago by
Resolution: | → duplicate |
---|---|
Status: | new → closed |
comment:2 Changed 12 years ago by
comment:3 Changed 12 years ago by
Component: | unfiled → manipulation |
---|---|
Milestone: | 1.next → 1.5.1 |
Priority: | undecided → low |
Duplicate of #8052.