How do I invert the text-color of an element using jQuery?

<div style="color: rgb(0, 0, 0)">Invert me</div>
link|improve this question
2  
In a nutshell, get the colour, turn it into 3 decimal values (it's returned as hex IIRC) and subtract those values from 255. You then have your R, G and B channels and you use $.css() to apply them again. – JamWaffles Feb 1 at 18:33
2  
2  
@JamWaffles You should make this an answer. But do you really need the entire jQuery library to do this simple task? Maybe something like: document.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
@Relic Excellent point. It can of course be done without jQuery, but the OP is using it, so it's a little better to use jQuery in this case, although the only thing it makes easier is element selection. – JamWaffles Feb 1 at 18:40
feedback

1 Answer

First load http://www.phpied.com/files/rgbcolor/rgbcolor.js

Then you can do

$.fn.invertElement = function() {
  var prop = 'color';

  if (!this.css(prop)) return;

  var color = new RGBColor(this.css(prop));
  if (color.ok) {
    this.css(prop, 'rgb(' + (255 - color.r) + ',' + (255 - color.g) + ',' + (255 - color.b) + ')');
  }
};

$('div').invertElement();

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.