> I saw the bug report for this ... do you have a test case? I can't reproduce
I think the reason that this reason that it occurs is that I'm using a custom version of idrop.js that stops the opacity turning on for the draggable. I changed it because 24bit PNGs in IE7 look horrible if the opacity turns on (even to 100%). *...( On Jul 2, 4:48 pm, "Brandon Aaron" <[EMAIL PROTECTED]> wrote: > this one. > > -- > Brandon Aaron > > On 7/2/07, weepy <[EMAIL PROTECTED]> wrote: > > > > > I also had a problem, this time only with IE6 > > > line 1587 ==> return elem.filter ? (parseFloat( elem.filter.match(/ > > opacity=([^)]*)/)[1] ) / 100).toString() : ""; > > > was causing an error as my filter didnt have "opacity=" string in it. > > > i fixed by changing to : > > > ==> return elem.filter ? (parseFloat( (elem.filter.match(/ > > opacity=([^)]*)/) || ["100"]) [1] ) / 1 00).toString() : "";