I\'m not very familiar with jQuery selectors, so would like some help.
I have a table like this:
-
2020-12-19 05:17
jQuery has :contains() pseudo class :
$('td:contains("Section Heading 4")').next().text(function(_,t){
return t + ' Hello';
})
Be carefull, :contains is case sensitive.
|