[jQuery] IE Bug in fadeIn

[jQuery] IE Bug in fadeIn


Hi!
I found a strange, strange bug in IE6:
aux=somevalues.split('='); // divid=value, i,e, "value1=abc" (no
quotes)
$("#"+aux[0]).text(aux[1]).fadeIn(); // Gives the Error "Object
doesn't support this property or method"
Now cames the oddity:
var a="abc";
$("#"+aux[0]).text(a).fadeIn();
or
$("#"+aux[0]).text("abc").fadeIn();
or
$("#"+aux[0]).text(aux[1]);
Those work! It seems the problem is in dealing with arrays AND
fadeIn. I'm stumped. Anyone has an idea on how to fix this weird bug?