I use Drupal for the website, and I can only use jQuery 1.2.7 (not the most recent versions).
I want to fade / fade a div element, and I use the mouseover / mouseout functions.
However, this element contains several children, and when I click on it, the mouseout function starts because I am moving over one of its children.
Since I do not have a mouseleave function, how can I solve this problem?
thank
Updated:
<div id="parent">
<p> blabla </p>
<div><a> blabla </a>
<p> blabla </p>
</div>
source
share