vote up 4 vote down star
2

I'm kinda new to javascript and jquery and now I'm facing a problem:

I need to post some data to php and one bit of the data needs to be the background color hex of div X.

Jquery has css("background-color") function and with it I can get rgb value of the background into a javascript variable.

The css function seems to return a string like this rgb(0, 70, 255).

I couldn't find any way to get hex of the background-color (even tho it's set as hex in css).

So it seems like I need to convert it. I found a function for converting rgb to hex, but it needs to be called with three different variables, r, g and b. So I would need to parse the string rgb(x,xx,xxx) into var r=x; var g=xx; var b=xxx; somehow.

I tried to google parsing strings with javascript, but didn't really understand the regular expressions thing.

Could someone tell me if there's a way to get background-color of div as hex, or explain how to convert the string into 3 different variables.

flag

3 Answers

vote up 7 vote down check

try this out:

var rgbString = "rgb(0, 70, 255)"; // get this in whatever way.

var parts = rgbString
        .match(/^rgb\((\d+),\s*(\d+),\s*(\d+)\)$/)
;
// parts now should be ["rgb(0, 70, 255", "0", "70", "255"]

delete (parts[0]);
for (var i = 1; i <= 3; ++i) {
    parts[i] = parseInt(parts[i]).toString(16);
    if (parts[i].length == 1) parts[i] = '0' + parts[i];
}
var hexString = parts.join(''); // "0070ff"
link|flag
+1 nice implementation with the the regex match, although I wonder if there's a constant space after the comma across all browsers – lpfavreau Mar 12 at 15:06
Well, this is the actual answer, thanks. However for me Ipfavreau's answer worked, since I'm just posting the background-color to create a css file with php. – Ezdaroth Mar 12 at 15:20
Wouldn't parts be ["rgb(0, 70, 255)","0","70","255"]? – Matthew Crumley Mar 12 at 18:52
oh oops - i'll fix now – nickf Mar 13 at 1:36
I love StackOverflow. Thanks, didn't want to figure this out myself. :-P – KyleFarris May 4 at 22:03
vote up 1 vote down

You can set a CSS color using rgb also, such as this:

background-color: rgb(0, 70, 255);

It is valid CSS, don't worry.


Edit: See nickf answer for a nice way to convert it if you absolutely need to.

link|flag
vote up 0 vote down

I found another function awhile back (by R0bb13). It doesn't have the regex, so I had to borrow it from nickf to make it work properly. I'm only posting it because it's an interesting method that doesn't use an if statement or a loop to give you a result. Also this script returns the hex value with a # (It was needed by the Farbtastic plugin I was using at the time)

//Function to convert hex format to a rgb color
function rgb2hex(rgb) {
 rgb = rgb.match(/^rgb\((\d+),\s*(\d+),\s*(\d+)\)$/);
 function hex(x) {
  hexDigits = new Array("0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f");
  return isNaN(x) ? "00" : hexDigits[(x - x % 16) / 16] + hexDigits[x % 16];
 }
 return "#" + hex(rgb[1]) + hex(rgb[2]) + hex(rgb[3]);
}

// call the function: rgb( "rgb(0, 70, 255)" );
// returns: #0046ff

Note: The hex result from nickf's script should be 0046ff and not 0070ff, but no big deal :P

link|flag

Your Answer

Get an OpenID
or

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