I have a problem with IE where I have "Empty text nodes" loaded in my tr . If I run
$('#myTr').children().length
and
$('#myTr').find('td').length
I get the same value, which means that these nodes are not registered in jquery. Selector :empty returns without anything.
In addition, if I remove these nodes manually from the IE debugger, the format changes, so something happens there.
Here is what I see in the IE debugger (IE 8, btw):

Any ideas? It makes us nuts ..
source share