I would like to change the box-shadow color as a result of the value I am getting from a database.
basically what I am doing is:
if (dbValue==1)
$('.myDivClass').css("box-shadow","0px 0px 30px #333333");
else
$('.myDivClass').css("box-shadow","0px 0px 30px #999999");
for the browser support I should set this value for -webkit -moz as well.
I think this is not supported and also it needs to have the inset value somewhere to make it inner box shadow.
I have searched for jquery plugins as well and I found out the boxShadow method which only changes outside shadow color. Is there any way of doing this? Am I missing something. What I can do I think is to create different css classes with different inner box-shadow's and with jquery I can add and delete the class into a div to change the box-shadow. this seems to me an alternative way of doing it but I want to make sure that if there is no way of changing the color of
box-shadow: inset 0px 0px 20px #257d0d;
this box-shadow directly?