I get border-width,border-color dynamically.
I have to set the opacity for the border.but the border-color value is in the hexadecimal format.
var borderCSS = { border: borderWidth + "px solid "+borderColor};
output is:
border:10px solid #cccccc;
I don't know how to set the border opacity in this case using jquery
or javascript.