find class into li on mouseover
Hi put imagecontainer class into every li and its property into css is display none I want when user hover into li then imagecontainer into li will be display blocked and when rollout from li it agan display none I use this code
I tried this for mouseover but it's not working, you can find attached file
$('.main ul li').mouseover(function(){
nowdiv=this.find(".magecontainer");
$(nowdiv).css("display":"block");
})