画像をぼかすために次のコードを試しましたが、うまく機能します。しかし、要素がクリックされたときに元に戻したいのですが、どうすればよいですか?
$(window).bind("load",function() {
$(".testclass").pixastic("blurfast", {amount:0.9});
$(".clickclass").click(function(e){
// this statement should revert the image
});
}
);