Я хочу выбрать связку td в таблице, чей CSS содержит определенный цвет фона (атрибут bgcolor).Как мне этого добиться?
Я пробовал $("[bgcolor=#FF0000]")
, но получил ошибку.Uncaught DOMException: Failed to execute '$' on 'CommandLineAPI': '[bgcolor=#FF0000]' is not a valid selector.
<table>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
<tr>
<td bgcolor="#FF0000">January</td>
<td bgcolor="#00FF00">$100</td>
</tr>
</table>