I've been banging my head against the wall all day with this one. Here is the link
http://www.olliemccarthy.com/test/blur-experiment/
I just want to click on the image and then see it blur out. That's it.
Here is the code I've been using so far.
$(document).ready(function() {
$('.test').click(function() {
$(this).("blurfast", {amount:0.8})
});
});
I've tried rearranging the order in which the scripts are called in and no luck.
I'm sure it's something really obvious and simple that is preventing this working and I cannot figure it out. So any help appreciated because my brain is fried from trying to figure this out!