I have a DataList populated from XML and some cells contain only   ; (the space there was to get it to show in this post).
I am using jQuery to remove those rows with
$('td:contains("\u00a0")').closest('tr').hide();
This works great in everything but IE. It comes down to the \u00a0 that is failing. I can’t use ” ” as other cells will have some spaces in them, and   ; doesn’t do anything either.
Any help on how to remove the row if a cell in it contains   ;?
Can you check the following solution?