Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>OK, so there are basically two primary ways in which an ad is rendered to the screen.</p> <ol> <li>Using a Javascript include and some variables.</li> <li>Using an iFrame that you place on the page.</li> </ol> <p>And honestly, the Javascript normally just renders an iFrame. Ad Networks want the iFrame b/c it gives them the easy ability to drop cookies (<em>has this user seen this ad elsewhere on the network</em>) and it's easy to drop impression pixels (<em>method of counting that page was rendered</em>).</p> <p>So here's your best bet.</p> <ol> <li>Figure out the iFrame URL that is being rendered. Some networks will tell it to you directly if you ask nicely.</li> <li>Place the iFrame on your canvas / html with the appropriate size (<em>e.g. 728x90</em>), but point it to a known URL on your domain that is blank. (or has a background color that matches your page).</li> <li>Add the javascript that updates the SRC of the iFrame at the appropriate time.</li> </ol> <p><code>iframe.src = 'myurl?'; iframe.reload();</code></p> <p>That should be all that you need to do. Set it up so that everything else loads and then load the advertising iFrames last.</p> <p>Note that this may affect your revenue from the ads. It depends on the user experience, but if the ads don't load until the user has scrolled them off the screen, then you won't get clicks or make money.</p> <p>Also, keep an eye on ad network performance. I know that <a href="http://www.cubics.com/" rel="nofollow">these guys</a> have pretty good response times, but there are lots of ad networks and sometimes even the big guys have crappy response times.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload