JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js"></script>
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/themes/base/jquery-ui.css">
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Tooltip - Track the mouse</title>
</head>
<body>
<table border=1>
<tbody>
<tr title="bug when you jump to next TD">
<td>test</td>
<td>test</td>
<td>test</td>
</tr>
<tr title="bug when you jump to next TD">
<td>test</td>
<td>test</td>
<td>test</td>
</tr>
<tr title="bug when you jump to next TD">
<td>test</td>
<td>test</td>
<td>test</td>
</tr>
</tbody>
</table>
</body>
</html>
CSS
td{width:200px;}
label {
display: inline-block;
width: 5em;
}
JavaScript
$(function() {
$( document ).tooltip({
track: true
});
});