Ok so I have a full table of images and just want to always display a small icon on the bottom right of every image on hover. Any ideas how I do this? Right now I have this, and it is just showing the hover image in the same spot every time...it needs to show on top of the image that is hovered. Thanks!
.enlargeImage {
background:url(images/xxx) no-repeat;
position:absolute;
width:16px;
height:14px;
z-index:200;
display:none;
}
$('.table_imageThumbs a').mouseover(function(){
$(this).show('.enlargeImage');
});
<div class="enlargeImage"></div>
<table width="408" class="table_imageThumbs">
<tr>
<td width="102" class="td_thumb"><a><image width="75" height="97" class="img_vertThumb"></a></td>
<td width="102"><a><image width="75" height="97" class="img_vertThumb"></a></td>
<td width="102"><a><image width="75" height="97" class="img_vertThumb"></a></td>
<td width="102"><a><image width="75" height="97" class="img_vertThumb"></a></td>
</tr>
</table>