I\'m not very familiar with jQuery selectors, so would like some help.
I have a table like this:
-
2020-12-19 04:54
My initial answer missed the point about updating the text, here is a sample with this included:
$(".test td:contains(Heading 1)")
.next().text(function(){
return $(this).text() + " Hello"
});
I don't believe you can use the append method as I think it only works to add html tags.
|