How to apply font-weight:bold to table tbody tr td elements with values greater than 0 without using a loop in JavaScript or jQuery?
The selector should be $(table tbody tr td) without utilizing the $.each function.
Here is an example of the HTML structure:
<table id="example">
<tr>
<td>0</td>
<td>1</td>
<td>2</td>
</tr>
</table>
<table id="myTable">
<tr>
<td>1</td>
<td>0</td>
<td>3</td>
</tr>
</table>