ich empfehle dir folgende lösung, die bei mir gut funktioniert.
html-datei
<div class="tooltipped">Mit Tooltip</div>
javascript-datei
function Tooltip (_tipped, _tip) {
var tipped = _tipped;
var tip = _tip;
this.onIn = function () {
tip.style.visibilty = "visible";
// ggf. Position anpassen
}
this.onOut = function () {
tip.style.visibilty = "hidden";
}
tipped.onmousemove = this.onIn;
tipped.onmouseout = this.onOut;
}
// Ggf. nach Klassenname in Schleife zuweisen oder ähnlich ...
tooltips = new Array();
tooltips[0] = new Tooltip(..., ...);