HI all,
Yesterday i was looking on internet how to decrease my website bounce rate safely, i was looking how to get visitors browsing more pages on my website using auto loading articles plugin for wordpress that can change url when user scroll pages but cannot find a free and non bogus one, then i found a javascript code from youtube channel the video name is "How to get ZERO Bounce Rate" for information i'm not sponsoring this video neither have a relation with the author.
i put that script on my website since yesterday and now i can see that my bounce rate down from 80% to 60%.
so my question is, is this script safe for my adsense account ? and natural seo, does Google will penalize me using it ?? below is the script.
Yesterday i was looking on internet how to decrease my website bounce rate safely, i was looking how to get visitors browsing more pages on my website using auto loading articles plugin for wordpress that can change url when user scroll pages but cannot find a free and non bogus one, then i found a javascript code from youtube channel the video name is "How to get ZERO Bounce Rate" for information i'm not sponsoring this video neither have a relation with the author.
i put that script on my website since yesterday and now i can see that my bounce rate down from 80% to 60%.
so my question is, is this script safe for my adsense account ? and natural seo, does Google will penalize me using it ?? below is the script.
Code:
<script type="text/javascript">
setTimeout(function(){
setInterval(function(){ gtag('event', 'Open', {'event_category': 'TimeOnPage'}); }, 10000);
setInterval(function(){ if(!document.hidden) gtag('event', 'Visible', {'event_category': 'TimeOnPage'}); }, 10000);
}, 60000);
</script>