Skip to main content

Bug Tracker

Side navigation

#1086 closed bug (fixed)

Opened March 30, 2007 03:09PM UTC

Closed April 25, 2007 07:48PM UTC

Last modified June 21, 2007 04:26AM UTC

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 (2)

Changed April 03, 2007 03:11AM UTC by brandon comment:1

component: ajaxcore
need: ReviewTest Case
priority: majorminor

Changed April 25, 2007 07:48PM UTC by brandon comment:2

resolution: → fixed
status: newclosed

Fixed in Rev. [1786].