Skip to content

Instantly share code, notes, and snippets.

@djrosenbaum
Created January 21, 2016 13:49
Show Gist options
  • Save djrosenbaum/ea2c0404efdc99382660 to your computer and use it in GitHub Desktop.
Save djrosenbaum/ea2c0404efdc99382660 to your computer and use it in GitHub Desktop.
// ==== GPT NEWSLETTER CODE ==== //
<div>
<a href="http://[STATIC_HTML_PAGE_URL].html?iu=[AD_ZONE_GOES_HERE]&sz=728x90&tile=1&c=12345678" target="_blank">
<img alt="" border="0" height="90" width="728" src="http://pubads.g.doubleclick.net/gampad/ad?iu=[AD_ZONE_GOES_HERE]&sz=728x90&tile=1&c=12345678">
</a>
</div>
// ==== STATIC HTML PAGE CODE ==== //
<!doctype html>
<html>
<body>
<img id="img" style="visibility:hidden;" onload="image_loaded()">
<script>
var url = window.location.search.replace( /c=\d*/,'c=' + Date.now() );
var img = document.getElementById('img');
img.src = 'http://pubads.g.doubleclick.net/gampad/ad' + url;
function image_loaded() {
window.location = 'http://pubads.g.doubleclick.net/gampad/jump' + url;
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment