In my list, I have images and descriptions set up in the following format:
<li>
<img class="photography" src="PHOTO/boat.jpg" alt="Boat on sea." />
</li>
<li><div id="description" class="description">
<p>BOAT</p>
<p>ITALY</p>
</div></li>
<li>
I am trying to create a hover effect where when I hover over the description div, it triggers an event for the picture. Can anyone assist me with this?