// Google ads DOM commonly shows this
// <div id="div-gpt-ad-1554101456137-0" data-google-query-id="CO6djYjpxukCFWbocwEdA58FJg" style="display: none;">
// The trick to check the unit; when div id has css style of display: none and the existence HTML attribute of 'data-google-query-id'
$.fn.hasAttr = function(name) {
return this.attr(name) !== undefined;
};
if(($(dfpStoFullId).css('display') == 'none') || !$(dfpStoFullId).hasAttr('data-google-query-id')){
HideSto();
$(stoEl).hide();
console.log('sto display none');
}