I am trying to explore any possible coding option that I can use to simplify my code or have a better flexibility on writing the code. If I have this element nest..
<table>
<tr><td></td><td></td></tr>
<tr><td></td><td></td></tr>
<tr><td></td><td></td></tr>
<tr><td></td><td></td></tr>
</table>
if I want to write text on first columns, I can do
$("table tr").each(function({
// how to write text here on all first column using $(this)?
// other ways to write on first column?
});
// other ways to write all first column not using ".each"