Is there a way to determine if a specific string, such as 'LA DEFENSE', is present in my HTML table and then change the background color of that line to red?
https://i.sstatic.net/Yq7qF.png
This is what I am looking for:
$("#colorline").click(function() {
if ($('rejets_communes').contains('LA DEFENSE'){
#color line by adding style element to the specific line
}
})