Modify ↓
Ticket #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: | |
| Blocking: | Blocked by: |
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
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.

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