I am making a site using responsive web design (via media queries).

I want to have different ads for different screen sizes. For example, I don't want a 780by90 ad to be displayed when a phone browser visits the site.

I know that display: none; isn't an option because the ad would still be loaded and record an impression. This is not an option.

Basically, I need to know how to load the ads in via javascript after the screen resolution has been found. I can find the resolution, I just don't know how to add the ads in after finding that.

I have tried .html with jquery but it seems to not allow adding script tags into the dom.

Thanks in advance.

link|improve this question

33% accept rate
One way would be to append images to to the body with jQuery after the page has loaded, and then transfer those images to the correct portion. The only problem with this would be that it may take a while for the page to finish loading before it starts loading the image. – Tim Withers Jan 31 at 20:32
I've sort of solved this problem. If the ads are inserted via an iframe, it is possible to do what I am trying to accomplish. Iframes present a few new issues of their own, but they work in particular case to do what's needed. – A.J. Bohac Jan 31 at 23:15
feedback

2 Answers

CSS3 Media Queries will selectively output images based on screen size - as long as the image is referenced in the CSS...

link|improve this answer
Yes but I need to output entire <script>...</script> blocks, not just images. And with media queries all elements will still be loaded, certain ones just won't be displayed. This isn't acceptable with ads because the ad company will register that the ad was loaded when it was never actually displayed to any visitors. – A.J. Bohac Jan 31 at 20:33
If you define the ad as a background image of a container then it should work. The image will be downloaded for the appropriate screen size and only said image will be requested from the server... – Xander Jan 31 at 20:34
feedback

I'd recommend doing this kind of calculation on the back-end instead of the front-end. You can use libraries such as WURFL or something like Apache Mobile Filter.

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.