vote up 0 vote down star

I'm trying to put some ads on my site and would like to load them after the page has loaded. We're using Doubleclick DART (please, don't tell me to use Google AdSense. I know, but that's a battle for another day). Doubleclick currently recommends embedding inline script tags like so:

<script language=Javascript1.1 src="http://ad.doubleclick.net/adj/sitename.dart/ 
zonename;abr=!webtv;kw=value;sz=widthxheight;ord=value"> 
</script>

This return a document.write with the ad html.

Does anyone know of a way to request the ads with an AJAX call so that only HTML is returned, thus allowing me to place the ads at my discretion? I've seen this done for mobile ads, but haven't found anything for websites yet.

flag

63% accept rate

2 Answers

vote up 0 vote down

I found this article helpful - How to integrate crappy banner javascript with your neat ajax application - and just finished writing an implementation for the site I work on. It fell down however if DoubleClick returned a document.write that added a script, and that script did the same. So, for us, it worked only 80% - 90% of the time.

In the end I had to go with a solution that involved writing an IFRAME into the page, that had a src attribute pointing to a PHP page that then wrote in the SCRIPT tag. I simply passed the URL for the DoubleClick ad script as a GET argument to the PHP page. This can all be done using JavaScript after page load.

Hope that this helps.

link|flag
vote up 0 vote down

You can AJAX it in like so

ord=Math.random(); ord=ord*10000000000000000000; jQuery.ajax({ url: "http://ad.doubleclick.net/adj/sitename/homepage;pos=1;ord='+ord+';sz=300x600,300x250,160x600", cache: false, dataType: "html", success: function(html){ $("#mysAd").append(html.split("'")[1]); } });
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.