Using the following jQuery will get the RGB value of an element's background color:
$('#selector').css('backgroundColor');
Is there a way to get the hex value rather than the RGB?
|
Using the following jQuery will get the RGB value of an element's background color:
Is there a way to get the hex value rather than the RGB? |
||||
|
|
Kindness, Dan |
|||||||||||||||
|
|
Here is a cleaner solution, like Matt suggested:
|
|||||||||||
|
|
Most browsers seem to return the RGB value when using: $('#selector').css('backgroundColor'); Only I.E (only 6 tested so far) returns the Hex value. To avoid error messages in I.E, you could wrap the function in an if statement:
|
|||||||
|
|
Updated @ErickPetru for rgba compatibility:
I updated the regex to match the alpha value if defined, but not use it. |
|||
|
|
|
Here's a solution I found that does not throw scripting errors in IE: http://haacked.com/archive/2009/12/29/convert-rgb-to-hex.aspx |
|||
|
|
Here is a version that also checks for transparent, I needed this since my object was to insert the result into a style attribute, where the transparent version of a hex color is actually the word "transparent"..
|
||||
|
|
|
Here is my solution, also does touppercase by the use of an argument and checks for other possible white-spaces and capitalisation in the supplied string.
On jsfiddle Speed comparison on jsperf A further improvement could be to
|
||||
|
|