I have multiple DIVs containing an image in each. When I rollover these DIVs, I want another DIV to fade in over the top. When I roll off this new DIV, it should fade out again. Essentially I want something like the grid of thumbnails here http://www.visualboxsite.com/
This is the code I have written:
<script>
$(document).ready(function(){
$("div.projectImage").mouseenter(function () {
$("div.textRollover").fadeIn(100);
});
$("div.textRollover").mouseleave(function () {
$("div.textRollover").fadeOut(100);
});
});
</script>
The problems with this are:
- When I roll over one of the DIVs, ALL of the new DIVs appear, not just the one I have the mouse over
- Moving the mouse over and off the DIVs repeatedly 'stack' the fade in/fade out functions
Can anyone help fix these?