Demo of tooltip track option value True in JQuery UI




Move the mouse over the input box to see how the tooltip following ( tracking ) the mouse

jquery

<script>
$(document).ready(function() {
////////////////
$( "#my_tooltip" ).tooltip({
track: true
});
///////////////
var present_track = $( "#my_tooltip" ).tooltip( "option", "track" );
$('#d1').html( " <b>Status of track:</b> " + present_track );
//////////
})
</script>