I have got a really nasty workaround: the following seems to be sufficient to 'touch' the affected parts of the DOM. (I used toggleClass originally, but just removeClass seems sufficient)
--- selection.html 2009-12-30 16:46:12.000000000 +0000 +++ selection2.html 2009-12-31 10:23:14.000000000 +0000 @@ -7,6 +7,9 @@ jQuery( function($) { $('.toggle').live('click', function() { $(this).closest('.header').toggleClass('selected'); + if (navigator.appName == "Microsoft Internet Explorer") { + $('.header + div').removeClass('IEsucks'); + } return false; }); }); -- You received this message because you are subscribed to the Google Groups "jQuery Development" group. To post to this group, send email to jquery-...@googlegroups.com. To unsubscribe from this group, send email to jquery-dev+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/jquery-dev?hl=en.