Geht schon!
Also, ich bin inzwischen an anderer Stelle fündig geworden:
Und so funzt das, was ich meinte:
<HTML>
<script>
function test1(){
var bild2 = document.createElement("img");
bild2.setAttribute("src","bild2.jpg");
bild2.setAttribute("width","50");
bild2.setAttribute("height","50");
bild2.setAttribute("id","hansi");
document.all["gunter"].appendChild(bild2);
}
function test2(){
document.all["gunter"].removeChild(document.all["gunter"].lastChild);
}
</script>
<BODY>
<b id="gunter" onclick="test1();">hinmachen</b>
<b id="manni" onclick="test2();">wechmachen</b>
</BODY>
</HTML>
So, ich hoffe das bringt etwas Licht ins Dunkle...wenn jemand noch ne besser Idee hat, dann würd ich sie gerne lesen...
thanx