i have this simple example here :
http://jsfiddle.net/pTyvc/1/
i don’t want the sub_menu div to slideUp if mouse is over it any help ? thanks
i have this simple example here : http://jsfiddle.net/pTyvc/1/ i don’t want the sub_menu div
Share
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.
You’ll have to use
mouseoverbecausemouseenteris not fired when you move from a child element to the parent element.Also, when you mouseover a sub menu, you’ll have to
.stop()the animation to keep it from sliding up. The same applies for moving the mouse from the sub menu to the parent element.http://jsfiddle.net/pTyvc/25/