Hi ,
I have the following code which is not working
I create this div over a popup , normally there will be 20 divs like this on a popup.
i am trying mouseover its not working , if i give mousover event in the div itself its working.
any mistake.
<div dataindex="0" class="clstImages" id="dlstImages0"><img alt="Almond Branches in Bloom, San Remy, c.1890" title="Almond Branches in Bloom, San Remy, c.1890" src="http://imagecache5d.art.com/CropHandler/crop.jpg?img=21-2107-SA3ED00Z&amp;x=0&amp;y=0&amp;w=400&amp;h=400&amp;size=2&amp;maxw=100&amp;maxh=100&amp;mode=sq&amp;q=100" id="eachimg">
</div>
$('.clstImages img').hover(function () {
alert("mouseover");
}, function () {
alert("mouseout")
});