In this JSFiddle, I'm trying to do a simple mouseover an image, it changes image, mouse off, the image changes back. But for some reason I'm not seeing the problem in the code.
$(document).ready(function(){
$('.normalClassName').click(function () {
$(this).addClass('hoverClassName');
}, function () {
$(this).removeClass('hoverClassName');
});
});
There seems to be a "tiling" problem where the original image tiles. See the JSFiddle.
Also if anyone can tell me what code do I need to add, to get it where I can have a mouse click on the 2nd image and out appears to the right another image to where I can click on that 3rd image to go to a link. Thanks
