Is there a way to make the window.onload function ignore a pages google ads?
If certain ads on the page take a while to load (such as video ads etc..) the function will not fire.
example..
function pageLoaded() {
alert('Loaded');
}
window.onload = pageLoaded;
No alert box will appear until all ads are completely loaded..
Any ideas?
Thanks.
Try putting this before the closing
</body>tag: