I know this questions has been asked a few times here. But these seem fairly outdated, and it looks like the Adsense for Ajax project has been canned (or at the very least, moving very slowly).

I have a web site that I've recently integrated pjax into -- basically, it uses Ajax to load the just the main content area, while maintaining the browser history and back/forward functionality using javascript's history.pushState.It has made a world of difference in how responsive the whole site is, as it no longer has to do HTTP requests for all of the outer shell of the site (javascript, css, images).

But Adsense just won't work with Ajax -- at least not natively. I've read about iFrame solutions, but it sounds like iFrames and Ajax and my pjax solution won't play together well.

What I'm doing is not devious, as far as Adsense usage goes. I'm still just showing one set of ads per page navigation as users click links. It's just not doing a full page-level HTTP request.

Are there any options out there? Has anybody done something like this? Or, does anybody know of any updates to the Adsense for Ajax project?

I need to get this figured out. If I can't, I may chose the pjax over the Adsense, which means my whole business plan will have to be rehashed. Ugh.

Thanks in advance.

link|improve this question

feedback

6 Answers

This is against AdSense terms.

You may want to implement the DFP solution, If I recall exact DFP allows something like that.

link|improve this answer
thanks to not giving me the full bounty ^^ – yes123 Jun 6 '11 at 23:27
Sorry, @yes123, I just didn't feel your answer provided enough details to back up your statements. I also looked into an alternative for DFP per your statement, and could not find one. – Jerad Rose Jun 7 '11 at 3:45
it's ok don't worry :) – yes123 Jun 10 '11 at 16:42
feedback
up vote 2 down vote accepted

FYI, I reached out to Google, and received the following response:

At this point, we do not have a product that works with AJAX sites or sites containing other dynamic content. This is something we're actively looking to build out, but I cannot provide more information or a timeline at this point.

While it's fairly vague (which I expected), it at least shows that they recognize the need, and are not completely ignoring it.

Thanks to all for your responses.

link|improve this answer
1  
one year later ant it's the same. if they wanted it they would have done it. they are complete morons. – Andrei Apr 9 at 12:34
feedback

There appears to be no way to do what you want.

link|improve this answer
feedback

First a warning: Google is merciless and will not reason with you should you break even a technicality in their TOS.

That aside, this question seems to be synonymous with yours. I don't believe there have been any advancements in AJAX-ing ads since then (HTML5 doesn't provide any solutions I can think of...)

The TLDR version of that page is that:

  1. Refreshing ads breaks adsense TOS
  2. It sucks that it breaks adsense TOS
  3. If you really want to, you could use an iframe as shown here

Given google's annoying (and strict) terms, might I suggest using another ad network

link|improve this answer
feedback

Try Adsense Custom Search Ads. It allows you to use keywords (could be long sentences) to show ads. [edit: it's not permitted according to tos, keywords must be user submitted]

link|improve this answer
feedback

It seems like you could subscribe an event handler to the all the a elements within the div that contains your AdSense widget (like jQuery's $('#myAdSenseContainer a').click(handler) At that point, you have full control over what happens when the link is clicked, so you can do whatever AJAXy stuff you want.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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