I am trying to work out how to get the value of table cell for each row using jQuery.
My table looks like this:
-
2020-11-22 15:27
A working example:
http://jsfiddle.net/0sgLbynd/
$(document).ready(function () {
//alert("sss");
$("td").each(function () {
//alert($(this).html());
$(this).html("aaaaaaa");
});
});