How do I invert the text-color of an element using jQuery?
<div style="color: rgb(0, 0, 0)">Invert me</div>
|
How do I invert the text-color of an element using jQuery?
| ||||
|
feedback
|
|
First load Then you can do
This should also work when the color property is specified with a word (like "black") rather than an RGB value. It won't work well with transparency, however. | ||||
|
feedback
|
$.css()to apply them again. – JamWaffles Feb 1 at 18:33document.getElementById('').style.color = invert(0, 0, 0); function invert(r, g, b){r = 255-r, g = 255-g, b=255-b; return {'r':r,'g':g,'b':b}}– Relic Feb 1 at 18:39