Move jQuery UI Tooltip with mouse
jQuery UI Tooltip widget has a property called "track", which is when set to true then tooltip follows the mouse. By default it is false.
Below jQuery code, will set this property to true which makes tooltip to follow the mouse.
$(function() { $(document).tooltip({ track:true }); });?
See result below
Feel free to contact me for any help related to jQuery, I will gladly help you.