If I have...
<div id="parent" onmouseover="doSomething()">
<div id="child" onmouseover="doSomethingElse()">
</div>
</div>
How can I make it so that doSomething() is not executed when I'm hovering over the child? I only want doSomethingElse() to execute when I'm hovering over the child, and I only want doSomething() to execute when I'm hoving over the parent.
Whenever I hover over the child, both functions execute. Any ideas?
Matt