Ok quindi devo creare una cosa di questo tipo :
codice:
window.onload = enableTooltips();
function enableTooltips(){
var links=document.getElementsByTagName("a");
for(i=0;links.length;i++){
t=links[i].getAttribute("title");
alert(t);
if(t!=""){
links[i].removeAttribute("title");
links[i].style.position="relative";
tooltip=document.createElement("em");
tooltip.className="tooltip";
tooltip.style.display="none";
tooltip.appendChild(document.createTextNode(t));
links[i].appendChild(tooltip);
links[i].onmouseover=showTooltip;
links[i].onmouseout=hideTooltip;
}
}
}
function showTooltip(event){
this.style.zIndex="25";
this.getElementsByTagName("em")[0].style.display="block";
}
function hideTooltip(event){
this.style.zIndex="24";
this.getElementsByTagName("em")[0].style.display="none";
}
Questo l' ho trovato su pro.html.it
ma mi da errore sul comando 'window.load' forse non è DOM.