Ajaxla değil js ile...
Şöle bişey olabilir mesela değerleri kendine göre değiştir...

<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>