#1086 closed bug (fixed)
s.indexOf("<tr") OR s.indexOf("<TR") bug in internet explorer
Reported by: | codar | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.1.3 |
Component: | core | Version: | 1.1.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
There is a few bug in clean function when processing wrap in the ie. Because
var s = jQuery.trim(arg) s returns <TR><TD>data</TD></TR>
Fixing: var s = jQuery.trim(arg).toLowerCase() ............ Go to html and back, then peel off extra wrappers div.innerHTML = wrap[1] + jQuery.trim(arg) + wrap[2];alert(div.innerHTML)
Attachments (1)
Change History (3)
comment:1 Changed 16 years ago by
Component: | ajax → core |
---|---|
need: | Review → Test Case |
Priority: | major → minor |
Changed 16 years ago by
Attachment: | jquery.clean.diff added |
---|
Note: See
TracTickets for help on using
tickets.
Patch