I had to switch some draggable elements to appendTo: 'body' in order to get around the way IE handles DOM order vs zIndex. (my draggables were disappearing behind other elements no matter what I set the zIndex to). This solution caused another problem: The class I was dragging was set to inherit font-size from the parent element.
In firefox / safari this worked as expected and the font size remained the same. In IE on appending to the body, it lost the inherited properties and the font size defaulted to the standard body font size (which I guess would make sense in an IE way because it's now part of the body instead of part of a parent element). Couple questions: -Is this a known bug / accepted problem because of IE? I couldn't find report in searching so I don't want to waste anyone's time if it's already been covered -Is there a list of known IE issues with jquery UI other than the bug reports? I have the usual list of things that worked in FF / safari but are buggy in IE, so if there's a clearinghouse with that type of info it could save me a bunch of time. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to jquery-ui@googlegroups.com To unsubscribe from this group, send email to jquery-ui+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en -~----------~----~----~----~------~----~------~--~---