bir popup açtırmak istiyorum kutu şeklinde ie de kötü görünür vs. yazıcam.bunu nasıl yapabilirm ajaxla yapılıyo bildiğim kadar yardımcı olan arkadaşlar lütfen
2
●811
<script>
function divAc(innerhtml){
var newdiv = document.createElement('div');
newdiv.innerHTML = innerhtml;
newdiv.id = "OrtaDiv";
newdiv.style.background = "#EFE";
newdiv.style.border = "1px solid #090";
newdiv.style.position = "absolute";
newdiv.style.left = "200px";
newdiv.style.top = "200px";
newdiv.style.width = "100px";
newdiv.style.height = "100px";
document.body.appendChild(newdiv);
}
</script>
<html>
<body onload="divAc('ie ile olmaz');">
</body>
</html>