Can you show me how to use jQuery to apply the CSS code below?
#centeredImage
{
-webkit-filter: grayscale(20%) invert(0) blur(1px);
}
I attempted this method already, but it didn't have any effect.
$('#centeredImage').css('-webkit-filter','grayscale(20%) invert(0) blur(1px)');