On my website at , I have placed my AdSense ads at the top of the page. However, I encountered an issue with Internet Explorer 8 where the Javascript code I used to move the ads to a different position on the page doesn't seem to work:
<!-- POSITION AD - START -->
<div id="ad_nav_1_position">
</div>
<script>
if (document.getElementById('ad_nav_1') != null)
{
document.getElementById('ad_nav_1_position').appendChild(document.getElementById('ad_nav_1'));
}
</script>
<!-- POSITION AD - END -->
While this method works for most browsers, IE8 is not cooperating. The ads are loaded at the top of the page but they are not being moved as intended. If anyone has experience with this issue and knows how to resolve it, I would greatly appreciate your assistance.