ok so here is the problem.
<div class="left">
</div>
<div class="right" onmouseout="this.innerHTML='';">
<div class="child" id="1">1</div>
<div class="child" id="2">2</div>
<div class="child" id="3">3</div>
<div class="child" id="4">4</div>
<div class="child" id="5">5</div>
</div>
ok so this all works fine, the element hides itself when I move the mouse from the right div to the left one. Problem is that it also hides when I move among the various divs inside. I need to have the user navigate around the right div, then have it disappear when the move the mouse to the left div.
Another issue is I cannot use jquery on this project, must be done in pure vanilla js. Is there really no way for the DOM to handle this kind of event?