How to hide a table row that has no unique id, but row just contains TD with a specific text,
note that I cannot adjust the classnames or add ID’s there either. Its nested TR.
eg.
<tbody><tr>
<table id="baskettable"><tbody>
<tr class="SeparateRow ">
<td class="SeparateColumn" colspan="2"> DO not hide this row</td>
<td class="SeparateColumn"></td>
<td class="SeparateColumn"></td>
<td class="Money">100,39 </td>
<td></td> </tr>
<tr class="SeparateRow ">
<td class="SeparateColumn" colspan="2"> yes hide this row</td>
<td class="SeparateColumn"></td>
<td class="SeparateColumn"></td>
<td class="Money">100,39 </td>
<td></td> </tr>
working example –> http://jsfiddle.net/ukJxH/1/