#914 closed bug (fixed)
el.attr("innerHTML") doesn't work properly in IE6
Reported by: | 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).
Note: See
TracTickets for help on using
tickets.
Fixed in revision 1295.
.load now uses .html to take advantage of fixes found in $.clean instead of just injecting the html.