Posts by Dahmer49 • 1 point
1 post
-
-1
votes3
answers65
viewsA: Select the next TD within a Loop
I don’t know if that’s exactly it, but here you can iterate on the text of all the tds. $.each($('td'), function(k, v){ if($(v).text() == 'administração'){ $(this).css('color','blue'); } })…