Modify ↓
Ticket #5714 (closed bug: invalid)
append() Doesn't Work for <head> Elements in IE
| Reported by: | gyrm | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 1.4 |
| Component: | unfiled | Version: | 1.3.2 |
| Keywords: | append, <head> | Cc: | |
| Blocking: | Blocked by: |
Description
The following code demonstrates:
var head = $('head');
head.append('<title>Yeah!</title>');
alert(head.html()); "Yeah!" added in FF3.5, Chrome3; not in IE8
var title = document.createElement('title');
title.appendChild(document.createTextNode('Buddy!'));
head[0].appendChild(title);
alert(head.html()); "Buddy!" added in all
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.

Looks like this may be an issue with the <title> element specifically, which is strange.
var script = $('<script src="foo.js" />'); var title = $('<title>Buddy!</title>'); var link = $('<link rel="stylesheet" href="foo" />'); alert(script[0]); alert(title[0]); // "undefined" only in IE alert(link[0]);