Opened 16 years ago
Closed 16 years ago
#1528 closed bug (fixed)
purple-include style injection doesn't work in IE
Reported by: | arrix | Owned by: | john |
---|---|---|---|
Priority: | major | Milestone: | 1.2 |
Component: | ajax | Version: | 1.1.4 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
the example http://dev.jquery.com/~john/ticket/load-hash/
works fine in ff 2.0, opera and safari 3 but not ie6/7
In IE, the red square flashes and disappears.
Will look into it in greater detail later.
Change History (5)
comment:1 Changed 16 years ago by
comment:2 Changed 16 years ago by
Maybe this goes back to the issue that you mentioned of $("<span/>")
not working in IE? By the way - is there a bug filed on that?
comment:3 Changed 16 years ago by
Milestone: | 1.1.4 → 1.2 |
---|---|
Owner: | set to john |
comment:4 Changed 16 years ago by
$('<wrap/>') actually creates an element in IE, however, this element doesn't support all methods(appendChild in this case), probably because <wrap> is not a standard html element.
I haven't filed a bug on the $('<span/>') issue yet because I think <tagName/> syntax for elements that require a closing tag is inappropriate.
comment:5 Changed 16 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Version: | 1.1.3 → 1.1.4 |
Fixed in SVN.
Sorry, I didn't notice this isn't in trunk.
However, the problems in IE are
will cause a "Unexpected call to method or property access." error while
is ok. Maybe IE isn't happy with undefined tag names?