Salve,
sto cercando di create dinamicamente un menu, ma quando lo eseguo su IE6 non compare nulla.
Questo è il codice
Su Firefox funge.Codice PHP:
child = document.createElement("table");
MenuObject.appendChild(child);
for(var i=0;i<html.responseNum;i++){
child1 = document.createElement("tr");
child.appendChild(child1);
child2 = document.createElement("td");
child1.appendChild(child2);
child2.innerHTML = "[url='#']" + html.response[i] + [/url]";
child2.setAttribute("height","18");
}