Welcome to my HTML table
<!DOCTYPE html>
<html>
<body>
<table>
<thead>
<th>Title1</th>
<th>Title2</th>
</thead>
<tbody>
<tr>
<td><input type="checkbox" id=0 /></td>
<td>TEXT99</td>
</tr>
<tr>
<td><input type="checkbox" id=1 checked/></td>
<td>TEXT100</td>
</tr>
</tbody>
</table>
</body>
</html>
My task is to parse all the rows in the table (after the page loads) and change the styling of the second column's text using jquery (as shown in the link)
For example, the table above should appear like so (with TEXTUSD crossed out)
I think we can adjust the css of an element with jquery's css method as follows
.css("text-decoration", "line-through")
However, I am unsure how to create a jquery code snippet that can loop through all the rows in the table and modify the css.
Do you think this is achievable with jquery?
Any assistance would be greatly valued !!!