About the hover event unbind in jQuery

Source: Internet
Author: User

Today, I encountered this problem and thought that the unbind ("hover") could be done directly, but failed. I found a lot of online is not very correct, and finally I saw the correct method on a foreigner's blog, now share, the original address http://harrybailey.com/2008/11/jquery-hover-and-unbinding/

There are several methods to cancel a hover event on the Internet:

/* This method is incorrect */
$ (# Hover_div). unbind (hover );

/* This method is also incorrect */
$ (# Hover_div). unbind (mouseover). unbind (mouseout );

/* This method is newly added and cannot be used in earlier versions */
$ (# Hover_div). unbind (mouseenter mouseleave );

/* Correct. All new and old versions are available */
$ (# Hover_div). unbind (mouseenter). unbind (mouseleave );

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.