An issue has arisen where the ads on a website are currently being displayed at the bottom of the source code, but they should actually be visible at the top.
Here is the ad placeholder code:
<div id="300_250_placeholder"></div>
And here is the ad display code:
<div id="300_250">
<script>AdShow("300_250");</script>
</div>
The task at hand is to ensure that the ad display code is only visible within the designated placeholder div and not in the original div.
I have attempted the following without success:
$(300_250).append(300_250_placeholder);
Any help or suggestions would be greatly appreciated. Thank you.