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.