CosmicSoundz
BANNED
- Apr 30, 2012
- 1,230
- 1,302
Hey guys. So one of my clients owns a single page site. I know I know, single page? But thats all it needs. We will be building more to the site but right now it is what it is.
Since its a single page site with exception of a few outbound links the bounce rate is extremely high. Like 95%.
So to fix that you can enter in this code (only if you have Google analytics)
This code tells google to that your visitor is still on your site every 10 seconds by using the google API. So this will lower your bounce rate immensely.
Bounce rate
Time spent on site
As you can see I just implemented this to his site and the bounce rate went from 95% to 15%. The time spend on site went from 1-2 min to 20-30 min.
Since its a single page site with exception of a few outbound links the bounce rate is extremely high. Like 95%.
So to fix that you can enter in this code (only if you have Google analytics)
Code:
<script type="text/javascript">
(function (tos) {
window.setInterval(function () {
tos = (function (t) {
return t[0] == 50 ? (parseInt(t[1]) + 1) + ':00' : (t[1] || '0') + ':' + (parseInt(t[0]) + 10);
})(tos.split(':').reverse());
window.pageTracker ? pageTracker._trackEvent('Time', 'Log', tos) : _gaq.push(['_trackEvent', 'Time', 'Log', tos]);
}, 10000);
})('00');
</script>
This code tells google to that your visitor is still on your site every 10 seconds by using the google API. So this will lower your bounce rate immensely.
Bounce rate
Time spent on site
As you can see I just implemented this to his site and the bounce rate went from 95% to 15%. The time spend on site went from 1-2 min to 20-30 min.