Has anyone used and modified this?
I'm trying to create a mouseover function on the images using something like this:
but the problem is that the anchor tag that the js creates to click through the images is absolutely positioned over the images so the mouseover function doesn't get called.
Not sure if there's a way around this.
I'm trying to create a mouseover function on the images using something like this:
Code:
$(function() {
$("img.one").mouseover(function() {
$("div#one-desc").css('display', 'block');
});
});
but the problem is that the anchor tag that the js creates to click through the images is absolutely positioned over the images so the mouseover function doesn't get called.
Not sure if there's a way around this.