how to change background color of multiple td elements using jquery – SEO
I'm unable to change the background color of multiple td elements in a table using jquery. HTML code : <td id="trueValue">/com/website/seo/</td> <td id="trueValue">/com/website/seo/</td> <td id="falseValue">/com/website/seo/</td> <td id="falseValue">/com/website/seo/</td> Jquery code : $("td").each(function() { var i = $(this).attr("id"); if (i == "trueValue")…