Vladislav,
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
$(function(){
var helper = document.createTextNode("Подсказка номер 1") ;
$("div").on({
"mouseenter": function(event) {
$(this).append(helper);
},
"mouseleave": function(event) {
$(helper).remove()
}
})
});
</script>
</head>
<body>
<div>i</div>
</body>
</html>