Trying to achieve the same effect with jQuery:
item.css("-o-box-shadow")
or:
item.css("box-shadow")
However, the result is an empty string.
In Webkit and Gecko browsers it works by using "-webkit" and "-moz" prefixes respectively.
How can this be achieved in Opera?
I have also attempted using "boxShadow", but still receiving an empty string.
$(".flag").css("boxShadow", "rgba(0,0,0,0.5) 4pt 4pt 7pt"); // Style set successfully
$(".flag").css("boxShadow"); // Returns ""