Side navigation
#5489 closed bug (duplicate)
Opened November 11, 2009 02:29PM UTC
Closed February 18, 2011 01:48PM UTC
Last modified March 10, 2012 09:54AM UTC
jquery 1.3.2: html() method wont work on IE 6 and 7
| Reported by: | radmission05 | Owned by: | |
|---|---|---|---|
| Priority: | low | Milestone: | |
| Component: | manipulation | Version: | 1.3.2 | 
| Keywords: | 1.3.2 html() IE6 IE7 IE+ | Cc: | |
| Blocked by: | Blocking: | 
Description
html() wont work on IR6 and 7, My codes are working well before then after i put some codes it stop working, The error says "unexpected call to method or property access", Then when i debug it, the error point to the line with appenChild() method. But im not convince, because i just add 50 lines of code i think, so when i trace back all my codes, i found the error were triggered when i use html(). Those line is to modify the page TITLE ( $("title").html("xxxxx") ), with some objects obj.html("xxxxxxx");
Attachments (0)
Change History (5)
Changed November 11, 2009 02:31PM UTC by comment:1
Changed June 13, 2010 06:28PM UTC by comment:2
| resolution: | → worksforme | 
|---|---|
| status: | new → closed | 
The correct cross-browser way to change the document title is through the document.title property.
Changed February 18, 2011 01:48PM UTC by comment:3
| component: | unfiled → manipulation | 
|---|---|
| milestone: | 1.3.2 | 
| priority: | major → low | 
| resolution: | worksforme | 
| status: | closed → reopened | 
Changed February 18, 2011 01:48PM UTC by comment:4
| resolution: | → duplicate | 
|---|---|
| status: | reopened → closed | 
Sample line
$("title").html($(obj).html()+ " - Welcome To XXXXXXXX");