Hi,
gibt es eine Möglichkeit die Anzeige des Title Attributs zu unterdücken?
gibt es eine Möglichkeit die Anzeige des Title Attributs zu unterdücken?
<a href="#" onmouseover="showTip(this);" >bla</a>
<div class="tooltip">[::shortInfo]</div>
function showTip(source){
var tip = source.nextSibling;
tip.style.display = "block";
alert("height: "+tip.getAttribute("height"));
}
Kommentar