I have div inside a div with the parent div have onmouseover and onmouseout functions
but when I hover on the child div the onmouseout function is triggerd which I don't want help?
<div onmouseover="alert("inside")" onmouseout="alert("outside")> <div></div> </div>
example:
the black div is inside the red one but the "outside" alert shows up