I have a div with multiple images like this:
<div class="am-container" id="am-container">
<a href="#"><img src="images/1.jpg"></img></a>
<a href="#"><img src="images/2.jpg"></img></a>
<a href="#"><img src="images/3.jpg"></img></a>
<a href="#"><img src="images/4.jpg"></img></a>
</div>
Now I want to create a loop that will display all the images as blurred, and on mouseover they should appear in their original form.
Is it possible to achieve this using simple jQuery? I've looked at some tutorials and demos with Gaussian.js and Blur.js, but haven't been able to get it working correctly.
Any suggestions would be greatly appreciated.