I have a <div> element containing an image. Inside this div, I have a <p> element that contains some image information. I want to hover a <div> containing the image, and then show or hide the <p> element.
<div class="box"> <img src="img/an_039_AN_diskette.jpg" width="310px" height="465px" /> 6 Pharma IT <p class="hoverbox">some information</p> </div>
Is there an easy way to do this in jQuery?
source share