I am using GAM as so:
<script async src="https://securepubads.g.doubleclick.net/tag/js/gpt.js"></script>
<script>
window.googletag = window.googletag || {cmd: []};
googletag.cmd.push(function() {
googletag.defineSlot('/86406173/ArticleLeaderboard', leader_size, 'div-gpt-ad-1321481451196-0').addService(googletag.pubads());
// etc.
googletag.pubads().collapseEmptyDivs();
googletag.pubads().enableLazyLoad();
googletag.pubads().enableLazyLoad({
fetchMarginPercent: 200,
renderMarginPercent: 100,
mobileScaling: 2.0
});
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>
Is there a conflict of interest between enableLazyLoad()
and enableSingleRequest()
?
Thanks!