I\'m using responsive Google Ads on my website but unfortunately it is not working all the time and most of time it is returning
TagError: adsbygoogle.pus
You need to remove the others that are not visible, how I use (jQuery):
$(document).ready(function(){
var $analyticsOff = $('.adsbygoogle:hidden');
var $analyticsOn = $('.adsbygoogle:visible');
$analyticsOff.each(function() {
$(this).remove();
});
$analyticsOn.each(function() {
(adsbygoogle = window.adsbygoogle || []).push({});
});
});