I try to have multiple blur events in blurjs jquery plugin but it seems to just not work at all when using more than 1 blur events.
$('.target1').blurjs({
overlay: 'rgba(0,100,100,0.1)',
source: 'body',
radius: 30
});
$('.target2').blurjs({
overlay: 'rgba(100,55,255,.6)',
source: 'body',
radius: 10
});
when running both nothing happens, running only one works, any way to fix this?