Perchè non ti leggi una guida per il DOM?
Codice PHP:
var testo = document.getElementById(
alert(testo.getAttribute("title"));
// ma anche
alert(testo.title);
Io ho fatto questo:
Codice PHP:
function tooltip() {
var tags = document.getElementsByTagName("a");
for(var i = 0; i <= tags.length - 1; i++) {
var testo = tags[i].getAttribute("title");
if(!(testo == "" || testo == null)) {
tags[i].removeAttribute("title");
tags[i].style.position = "relative";
var tooltip = document.createElement("div");
tooltip.className = "tooltip";
tooltip.appendChild(document.createTextNode(testo));
tags[i].appendChild(tooltip);
tags[i].onmouseover = function() {
this.style.zIndex = "25";
this.getElementsByTagName("div")[0].style.display = "block";
}
tags[i].onmouseout = function() {
this.style.zIndex = "24";
this.getElementsByTagName("div")[0].style.display = "none";
}
}
}
}
window.onload = tooltip;
Vedi se puo esserti utile... Crea un tooltip per ogni tag "a"
P.S. Devi definire .tooltip nei css...
Saluti!