For example:
AA33FF = valid hex color
Z34FF9 = invalid hex color (has Z in it)
AA33FF11 = invalid hex color (has extra characters)
|
For example:
|
|||
and more advanced :
|
|||||||||||
|
isHexaColor("AA33FF") => true isHexaColor("Z34FF9") => false isHexaColor("AA33FF11") => false |
|||
|
|
|
This can be a complicated problem. After several attempts I came up with a fairly clean solution. Let the browswer do the the work for you. Step 1: Create a div with border-style set to none. The div can be positioned off screen or it can be any div on your page that doesn't use the borders. Step 2: Set the border color to an empty string. The code might look something like this:
Step 3: Set the border color to the color you aren't sure about.
Step 4: Check to see if the color actually got changed. If testcol is invalid, no change will occur.
Step 5: Clean up after yourself by setting the color back to an empty string.
The Div:
Now the JavaScript function:
In this case, the function is returning a true/false answer to the question, the other option is to have it return a valid color value. Your original color value, the value from borderColor or an empty string in place of invalid colors. |
||||
|
|
AARRGGBBformat. – 32bitkid Nov 6 '11 at 14:28