I have set the background-color of a row via CSS
$("#gv tr:has(td)").each(function () {
$(this).css({ "background-color": "green" });
})
After this , certain rows have been added
How can I loop through the rows and only again find the "green" rows?
$("#gv tr:has(td)").each(function () {
? (if row == green){
}
})