I would like to animate the bluring on image in JQuery
I have this image :
<img id="right" class="vote" src="css/images/no.png" alt="no button" onclick="vote(0)">
And I would like to do become this image more blur during 1 seconde.
Somethings like this :
$("#right").animate({"-webkit-filter":"blur(30px)"},1000);
But this don't works.
I'm waiting for your answer.