I have some elements that have a CSS3 box-shadow around them as default, if the user has javascript turned on though I would like to hide the box-shadow.
I am currently using the code seen below to hide other elements and this method works perfectly except for the box-shadow. I have done a few tests, i.e put other code where 'box-shadow:none' is and it always works as expected, I therefore assume it's a problem with the compatibility of the CSS3 box-shadow attribute and jquery.
Can anyone think of a way to get around this? Or maybe another way to turn off the box-shadow attribute on load of the page.
Thanks in advance for any help.
$('html').append('<style type="text/css">.sub-menu{width:897px;display:none;} .sub-menu-header{box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none;}</style>');
CSS for the sub-menu-header
.sub-menu-header{
-moz-box-shadow: 1px 1px 5px #000;
-webkit-box-shadow: 1px 1px 5px #000;
box-shadow: 1px 1px 5px #000;
border:1px solid #CCC;
cursor:pointer;
}
box-shadowbeen set with the same selector specificity (.sub-menu-header)? – jensgram Nov 22 '11 at 9:51