I have jquery.corner.js file and custom.css file,
For rounded corners i have used jquery.corner.js file, for rounded corners it is applying default color white(from jquery.corner.js). when i change the background color white to blue,the rounded corneres is displaying white. Now my requirement is when ever i change the background color to some other color, i have to get that some other color code into my jquery.corner.js how to achieve it?
here is the code:
Custom.css
body {
background: #FFFFFF;
}
in jquery.corner.js file
strip.style.borderColor = '#FFFFFF'
(i am manually adding color code, i dont want to add it manually) now in jquery.corner.js file color code #FFFFFF has to get from custom.css file. how to achieve this?