I use the jQuery ui tooltip function, and it seems to me that the wilting in the tooltip is a little annoying.
I added a delay: 0, but still doing the attenuation.
Does anyone have a solution to this, or can recommend other tooltip functionality? Thanks!
Below is my code
$(function () { $(document).tooltip({ show: { effect:'toggle', delay:0 }, content: function () { return $(this).prop("title"); } });
source share