I have example like below. How to avoid “lost of mouseover” on <div> when mouse is over inner <span> ?
<div id="box">
ABC
<span style="font-size: 10px; font-weight: normal;">abc</span>
</div>
Live demo here.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
use jquery hover instead of mouseenter/mouseout e.g.
As another user mentions, you could use a chained event of mousenter and mouse leave e.g.
However, hover is simply shorthand for the above.