Bug Tracker

Changes between Initial Version and Version 1 of Ticket #8830, comment 3


Ignore:
Timestamp:
Apr 9, 2011, 5:52:13 PM (12 years ago)
Author:
Timmy Willison
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #8830, comment 3

    initial v1  
    1 I may have misread your ticket and leaped too quickly to relate it to #8685.  You 'do' need to handle debouncing your hovers.
     1I may have misread your ticket and leaped too quickly to relate it to #8685.  You ''do'' need to handle debouncing your hovers.
    22
    33The hover events (mouseenter and mouseleave) are fired whenever the user hovers the element, however quickly. You probably need to make sure the user wants to hover. hoverIntent (http://bit.ly/QJz5) and $.event.special.hover (http://bit.ly/1VBJW) will automatically normalize the hover event, or you can debounce manually using throttle/debounce (http://bit.ly/e8d9TB). Animating? How .stop() works (http://bit.ly/5kq9xo)