I have elements like so:
<div class="parent">
<div class="one"></div>
<div class="two"></div>
<div class="child"></div>
<div class="child"></div>
<div class="three">
<div class="four">
<div class="child"></div>
<div class="five"></div>
</div>
</div>
</div>
Is it possible to apply 'mousemove' event, to ".parent", which won't be triggered over ".child" elements which may not be direct descendants?
I tried combinations of .children, .not, but nothing seems to work.
Edit: Thanks for suggested duplicate question and downvote, but I can't see how it applies to my question.