Has anyone encountered issues with hovering over ul elements not working?
<ul class="navi">
<li> <a class='light'>
Item1
<div class="hover-name" style="display:none">
Businesses
</div>
</a>
</li>
<li> <a class='light'>
Item2
<div class="hover-name" style="display:none">
Agencies
</div>
</a>
</li>
<li>
Item3
<ul class="hover-name" style="display:none">
<li><a>hello</a></li>
<li><a>hello2</a></li>
</ul>
</li>
</ul>
I am attempting to display additional elements when hovering over items in the list, but for some reason, it does not work when hovering over the ul "hover-name" element in the provided fiddle.