Speed up page load times when running Google adsSpeed up page load times when running Google ads

Google ads are an easy way to monetize your site, but their implementation leaves a lot to be desired. To insert a Google ad block on a page one has to insert two script blocks: one to set the adverts parameters, and one to load the external Google script.

The problem is that the scripts have to be inserted in the body at the place where the advert is desired. This is because Google uses JavaScript's document.write to generate an iframe, which then loads the ad. If Google's servers are being a bit laggy then your visitor has to wait for the Google script to finish loading before the rest of the page is rendered. The closer your ad is to the top of the page, the worse the resulting problem is.

A number of solutions have been proposed, including overwriting the document.write method, and inserting the Google script through DOM manipulation. Unfortunately this breaks in Safari 2.0, and breaks any other instances of document.write you may be using.

So here is the solution we've come up with:

Normal set-up

<html>
...
<body>
Content above advert
<script type="text/javascript"><!--
Google ad params
//--></script>
<script type="text/javascript" src="...show_ads.js"></script>
Content below advert
</body>
</html>

Optimised set-up

<html>
...
<body>
Content above advert
<div id="ad1_inline"></div>
Content below advert
<div id="ad1_footer" style="display: none;">
<script type="text/javascript"><!--
<em>Google ad params</em>
//--></script>
<script type="text/javascript" src="...show_ads.js"></script>
</div>
<script type="text/javascript">
window.onload = function() {
document.getElementById('ad1_inline').appendChild(document.getElementById('ad1_footer'));
document.getElementById('ad1_footer').style.display = '';
}
</script>
</body>
</html>

What it does

  1. Creates a place-holder div for the where the ad will end up
  2. Places all the ad code in an "footer div" at the bottom of the page - this prevents your page from "locking" while the Google scripts load
  3. Hides the footer "footer div" with css so the ads don't ever show below your page, causing the page height to "jump"
  4. Waits for the whole page to load before moving the ads (the window.onload bit) thus preventing Internet Explorer from getting really upset.
  5. Moves the ad to it's placeholder, and un-hides it

Of course you may not want to use window.onload. If you attach the function to an event you can modularise the whole ad insertion in your code. Using a JavaScript library (Prototype in this case, but others will look similar) results in the following change to the last script:

...
<script type="text/javascript">
Event.observe(window, 'load', function() {
$('ad1_inline').appendChild($('ad1_footer'));
$('ad1_footer').show();
}
</script>
...

All scripts are Public Domain.

Comments

Perfect, Thanks

Very good post, thanks a lot.

I think blogs are small websites that are used to introduce the knowledge of those people that are really intelligent but can not afford a website

chi flat irons
chi hair straighteners
chi hair tools
wholesale nfl jerseys
wholesale jerseys
cheap jerseys
discount jerseys

Perfect, works like a charm and the speed of the homepage is so much faster!

Cheers!

Hey thank you for making this,

I would suggest to put in bold the things that are added,
that way we can see clearly what to add and what not to, made a mistake :(

Thanks alot

Thanks to you, www.travelmastery.com will be a lot faster,
If its works you are going in my Thanks page :)

Thanks a lot!! Now the load speed is faster in www.quereceta.com !

This is a very detailed and professional solution which helped me to significantly improve the speed of my website http://www.sandraandwoo.com/ today.

Thanks for mentioning this on your site, Novil! I'm using this tweak on http://www.kennychronicles.com/ now, and I've noticed a 1-2 second increase. The biggest benefit will be when Adsense is slower than usual, which it definitely is sometimes.
I've tweeted this to my 68 followers, many of which are other cartoonists with sites. I hope this edit gets spread around more.

Awesome stuff, thank you!

I've just spent an hour or so rewriting all my AdSense calls and the result is my pages are much, much faster.

The pages were fast before I added AdSense, the slow downs it suffered were frustrating the heck out of me so I was on a mission today to bring my pages back up to loading sub two seconds.

You solution was wicked!
Appreciated.

Post new comment

The content of this field is kept private and will not be shown publicly.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.
  • You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.
  • The signwriter filter 'Page titles' is enabled.
  • The signwriter filter 'Page sub titles' is enabled.

More information about formatting options

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.