I have this bit of HTML:
<div id="site-header-inner">
<div id="header-logo">
<?php echo wp_get_attachment_image(get_field('header_logo','options'),'full'); ?>
</div>
<div id="header-nav">
<ul>
<li class="header-nav-item">
Articles
</li>
<li class="header-nav-item">
Art Space
</li>
<li class="header-nav-item">
Job Board
</li>
<li class="header-nav-item">
Calendar
</li>
</ul>
</div>
</div>
<div id="header-nav-dropdown">
<div id="dropdown-inner">
Dropdown Stuff
</div>
</div>
When the <li class="header-nav-item"> is hovered, I want to show the <div id="header-nav-dropdown"> using javascript/jquery.
What is the simplest way to do that while also keep the <div id="header-nav-dropdown") visible as long as the mouse is over it or the <li>?