if($(this).css(\"background-color\")==Crimson)
is this correct ? .css(\"background-color\",\"white\") will change the color, but I don\'t want t
Possible answers in JavaScript is like this:
if(window.getComputedStyle(document.getElementById("notify-9"),null).getPropertyValue("background-color") == "rgb(220, 20, 60)"){ alert("matched!"); }
// rgb(220, 20, 60) is equal to Crimson