I am trying to blur the image like Here using Vague.js
Here is my code:
HTML
<img id="yourelement" src="http://sea-captains-house.com/images/box-discover-oia/sunset.jpg" />
jQuery
var vague = $('#yourelement').Vague({
    intensity:      3,      // Blur Intensity
    forceSVGUrl:    false,   // Force absolute path to the SVG filter,
    // default animation options
    animationOptions: {
      duration: 1000,
      easing: 'linear' // here you can use also custom jQuery easing functions
    }
});
vague.blur();
Here is my JSFiddel
Please help me where I do mistake??
 
    