JQuery UI bounce effect - bounce only once on entering div
问题 I have a div that I want to bounce once, when the mouse enters/hovers over the div. The code I have works in Chrome, but not in Firefox or IE. http://jsfiddle.net/d7UjD/73/ In Chrome it bounces once as desired but in FF and IE the bouncing goes on as long as the mouse remains in place. I also tried $('#box').one("mouseenter", function() { but the box bounces once, and subsequent entries into the div do not trigger the effect. Any thoughts on why the browsers are behaving differently and what