For example see My site page : http://scansocial.com/22478982
there 开发者_运维技巧you can see a jquery thing at topmost and after that adsense. When we click one of Share Tweet Shorturl on Jquery it loads into down which shows adsense in that too
How to make adsense not visible over the Jquery window ?
You can set the z-index on the #panel element and that should fix your problem.
In your stylesheet, just set this property
#panel {
z-index: 10;
}
I tried it using Firebug and it worked.
Good luck :)
精彩评论