I have a transparent PNG sitting in a DIV on top of a list of links and I would like to know if there is any way to allow a user to click on any of those links currently sitting behind the image with jQuery? The image is large enough that it is covering the DIV below it at all times.
<div id="links"><a href="#">Link</a></div>
<div id="image"><img src="image.png" alt="" border="0"></div>
I'm totally new to the world of jQuery so I'm still learning and can't quite grasp how to do this. Any help would be appreciated!