Bug Tracker

Modify

Ticket #8354 (closed bug: duplicate)

Opened 2 years ago

Last modified 2 years ago

jquery-latest.min.js fails when run with IE 9.0.8080.16413

Reported by: raifordb@… Owned by:
Priority: low Milestone: 1.5.1
Component: manipulation Version: 1.5
Keywords: Cc:
Blocking: Blocked by:

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

comment:1 Changed 2 years ago by ajpiano

  • Status changed from new to closed
  • Resolution set to duplicate

comment:2 Changed 2 years ago by ajpiano

Duplicate of #8052.

comment:3 Changed 2 years ago by jitter

  • Priority changed from undecided to low
  • Component changed from unfiled to manipulation
  • Milestone changed from 1.next to 1.5.1

Please follow the  bug reporting guidlines and use  jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

View

Add a comment

Modify Ticket

Action
as closed
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.