Assuming I've correctly defined a google ad:
googletag.defineSlot(adUnitPath, size, "ad-id-goes-here")
If I use multiple instances of the following code (googletag.display()
with the same id) on one page:
<div id="ad-id-goes-here" style="width: 728px; height: 90px">
<script type="text/javascript">
googletag.cmd.push(function() {
googletag.display('ad-id-goes-here');
});
</script>
</div>
Will the ad only display once (the very first instance), or will it fail to display at all?
According to the reference:
Each ad slot should only be displayed once per page.
However this says nothing about failure, any thoughts?