Jump to content

How to make ads load last


carefree

Recommended Posts

The only thing I can think of is something like this:

 

<!-- some content here -->

<div id="ads" style="width: <width of the ad>; height: <height of the ad>"><!-- you would want to use static sizing so that when it fills it doesn't have some weird resizing going on ;p --></div>

<script language="javascript">
<!--
onload = function() {
obj = document.getElementById('ads');
obj.innerHTML = '<h1>THIS IS AN AD ;p</h1>';
}
//-->
</script>

<!-- more content here -->

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.