[jQuery] Problem with $(...).css() or interface 1.1

[jQuery] Problem with $(...).css() or interface 1.1

Can you tell I'm upgrading to 1.1 tonight? :)
Draggable ghosting isn't working in interface 1.1 on FF because it does:
jQuery.iDrag.helper.css('opacity', elm.dragCfg.opacity);
opacity is a float, and css('opacity', float) doesn't work on FF anymore. I changed it to:
jQuery.iDrag.helper.css('opacity', elm.dragCfg.opacity+'');
And it works fine. Not sure if this is a jQuery issue or an interface issue.
--Erik
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/