Нужно было так, всем принявшим участие в обсуждении большое спасибо
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Tooltip - Custom content</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<script>
$(function() {
$( ".ui-state-active" ).tooltip({
content: "Awesome title!",
items: "li[data-title]",
track: true
});
});
</script>
</head>
<style>
li{list-style:none;}
</style>
<body>
<ul>
<li class="ui-state-active" data-title="TEST">111111111111111111111111</li>
<li class="ui-state-active" data-title="TEST">1222222222222222222222222</li>
<li class="ui-state-active" data-title="TEST">33333333333333333333333333</li>
</ul>
</body>
</html>