I have 10 images, and when I hover one, I want the 9 remaining to change the filter.
This is what I have:
CSS
#posts-wrapper:hover .posts {
-webkit-filter: blur(10px);
}
jQuery
$(document).ready(function(){
$(".posts").mouseover(function() {
$(this).css("-webkit-filter", "none");
});
$(".posts").mouseleave(function() {
$(this).css("-webkit-filter", "blur(10px)");
});
});