Bug Tracker

Opened 17 years ago

Closed 17 years ago

Last modified 16 years ago

#914 closed bug (fixed)

el.attr("innerHTML") doesn't work properly in IE6

Reported by: lukas@… Owned by:
Priority: major Milestone:
Component: ajax Version: 1.1
Keywords: Internet Explorer, innerHTML Cc:
Blocked by: Blocking:

Description

IE 6 failed on my site when i used the load command. the problem seemed to be the use of el.attr("innerHTML",value) in the ajax load function. chaning this line to el.html(value) fixed the problem.

additionaly i had some problems in assigning this to self in IE, as IE seems to interpret self as a special variable as well (so does safari).

Change History (1)

comment:1 Changed 17 years ago by brandon

Resolution: fixed
Status: newclosed

Fixed in revision 1295.

.load now uses .html to take advantage of fixes found in $.clean instead of just injecting the html.

Note: See TracTickets for help on using tickets.