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:09
1 |
2 |
3 |
4 |
5 |
6 |
jquery code to select particular td value
$(".tdcls").mouseenter(function(){
var a = $(this).text();
});