codice:
function begin() {
var note = document.getElementById("note");
for(var i = 0; i < 6; i++) {
var sound = document.getElementById("nota0");
var newSoundNode = sound.cloneNode(true);
var ident = "nota" + i;
var path = "mid/" + NOTE[i] + ".mid";
newSoundNode.setAttribute("id", ident);
newSoundNode.childNodes[3].setAttribute("value", path);
newSoundNode.childNodes[5].setAttribute("data", path);
note.appendChild(newSoundNode);
}
Ho grossi dubbi che possa andare ma non ho IE e non conosco bene object per darti indicazioni