Guten Morgen!
Habe es jetzt so gemacht:
var pic = new Array();
function a() {
for(var i=1; i<4; i++) {
pic[i] = document.createElement("img");
pic[i].src="_ichkreis2.gif";
pic[i].style.position = "absolute";
pic[i].style.height = 20; pic[i].style.width = 20;
pic[i].style.top = i*20; pic[i].style.left = i*30;
document.getElementById("bild").appendChild(pic[i]);
}
}
Ist mir egal, ob er es jedesmal vom Server laden muss.
Hauptsache es funktioniert!
Danke