Hello EveryOne,
I have a problem with ie6 when using the appendChild method.
I have tested my code on ie8, FireFox and chrome and I don't have any problem.
I give you the code:
Thank you in advance for your help
I have a problem with ie6 when using the appendChild method.
I have tested my code on ie8, FireFox and chrome and I don't have any problem.
I give you the code:
Code:
pic = new Image();
pic.id = "img_thumb_"+id;
//pic.name = "img_thumb_"+id;
pic.src = "get_mini_image.php?archId="+id;
pic.style.display = "block";
pic.style.position = "absolute";
pic.style.top = "10%";
pic.style.left = "64%";
parent.document.getElementById("id_DIV").appendChild(pic);
Comment