In this JSFiddle, I'm trying to do a simple mouseover an image1, it changes to image2 with an icon image appearing also that contains a link to click on. I have trouble making this little icon image(+link) disappear on mouse off and instead it just keeps adding more of the same icon image(+link) with each mouseover(I know it's because I have .after() in jquery), but is there something to just do a simply mouseover/mouseleave?
Is there also a way to position this icon image using px anywhere you want around the main image1/2 on the page to appear?
$(document).ready(function(){
$('.normalClassName').addClass('.normalClassName:hover').mouseover(function(){
$(this).after('<a href="http://www.yahoo.com" /></a><img src="http://www.quarktet.com/Icon-small.jpg">')
});
});