Hello! I'm wondering how could I increase adsense loading time ? I have an idea that could increase my ctr significantly and for this to work I must delay ads for 3 sec. Any ideas ? and it's not against tos ..
you can use this code. but i don't know about adsense tos compliance. add this between <head> and </head> tags: <SCRIPT LANGUAGE="JavaScript"> function makeItVisible() { document.getElementByName('adsensediv').visibility = "visible"; } </SCRIPT> HTML: change your body tag like this: <body onLoad="setTimeout('makeItVisible()', 3000);"> HTML: use your adsense code like this: <div name="adsensediv" style="visibility: hidden;"> <!-- your adsense code here --> </div> HTML: it should work, but i am too lazy to test it, so there may be errors. again, i am not sure about adsense tos compliance. use at your own risk.
thank you! I know that much that I'll be able to test it and modify it so that will suit my needs. I will contact google and asked them about this.
you're welcome. please let us know google's reply. also i wouldn't mind if you pm your idea to me (i'm not gonna use it, just curious.)
GOT IT !!! just change this: document.getElementByName('adsensediv').style.visibility = "visible"; you forget .style.