I want add a background color for the "tr" in the topics list area with the new posts icon ... but this code doesn't work .. any ideas?
- Code:
$(document).each(function() {
var img = $(".status img");
if (image.getAttribute('src')=="newpost.png") {
$('tr').css("background-color","#e6e9ee");
};
});