JQueryUI tooltip

When I repeat the scroll of an element, the jQuery tooltip seems to skip. I thought this happened because it was colliding with itself, so I set the collision parameter to none , but that didn't help.

This is mistake? How can I make him not jump?

+8
jquery tooltip
source share
2 answers

I set the .ui-tooltip class for position: absolute , it seemed to work, not sure if there would be any undesirable consequences, though?

+20
source share

The happygilmore method seems to no longer work (and, he said, is also a risky approach). I suggest using the tooltip widget API by setting the following parameters:

 position: { collision: 'none' }, hide: false 

The collision: none parameter stops the jQuery user interface, trying to do something interesting to resolve conflicts, and hide: false stops it from using fade animation to slowly remove the tooltip; whose delay causes a collision in the first place. In my opinion, this looks great, without the fade animation.

+6
source share

All Articles