I got a very simple Table with only two rows.
I was thinking what is the best way to get the value from the TD with ID \"row2\".
-
2021-01-12 06:11
This will do it for you:
var r = $("#testing #row2").text();
alert(r);
In action here for your viewing pleasure.