Using the solution I found here: [
webmasterworld.com...]
I am trying to set up my ad codes so that they are excecuted last using placeholders. Other solutions result in duplicate requests which I'm trying to avoid, but the code in the aforementioned thread does not work. The ads show, but they show at the bottom of the page without being removed to their proper places.
First I have the placeholder:
<CENTER>
<div id="adbox"></div>
</CENTER>
Then:
<div id="adboxloader" style="display:block;">{Lots of script text stuff here, unchanged from ad vendor}</div>
<script type="text/javascript">
var loader = document.getElementById('adboxloader');
document.getElementById("adbox").appendChild(loader);
</script>
This however never moves the ads, they simply load at the bottom of the page out of place. Any idea what might be going wrong here?