Hello
I am trying to use Jquery to find TD's with X or Y content (text) inside. For example:
http://sotkra.com/btol/index.php
From left to right, the 7th COLUMN that reads 'TIPO MONEDA' displays either PESOS or DOLARES. I'd like to be able to do the following:
1.- Select TD's with the text 'DOLARES' or 'PESOS' and add a class to them.
2.- Select TD's with the text 'DOLARES' or 'PESOS' and add a class to their PARENT TR's.
For #1, I tried with this:
$('td[innerHTML=Dolares]').addClass('highlight');
and also
$('td[html=Dolares]').addClass('highlight');
None of which worked.
All help is appreciated
Sotkra