If I have a code snippet like this
<div id='one'>xyz
<span id='two'>abc</span>
</div>
I am attempting to hover over element one
, then element two
, and finally back to one
. However, I am facing an issue with jQuery not recognizing when I am leaving element two
and re-entering element one
. I need to be able to trigger an event when I re-enter one
.
Is there any way to accomplish this without making changes to the HTML markup of the page? Unfortunately, I do not have permission to modify it.