I am faced with a challenge involving a UL list structured like this:
<ul>
<li id="firstdiv">First div</li>
<li id="seconddiv">Second div</li>
<li id="thirddiv">Third div</li>
....
</ul>
Below the list, there are corresponding div elements as follows:
<div id="firstdiv">Content Here</div>
<div id="seconddiv">Content Here</div>
<div id="thirddiv">Content Here</div>
I am investigating how I can display each div only upon hovering over its respective LI item, perhaps even incorporating a fadein effect. I have attempted various solutions found online, but unfortunately, none have been successful so far.