Hey, So I'm sure some of you have realized that the google bounce rate in google is actually very inconsistent with your real visitor visit. Google Analytics only counts a bounce if they visit more than one page, and that is when they start timing it, but in fact bounce rate only means if the user enters and leaves right away. So to get a correct reading, enter this code to get a real reading of your bounce rate.
<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>
It gave me a real bounce rate to my website Numeroten
Dropped from 50% to about 15%! Just a tip from me!
<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>
It gave me a real bounce rate to my website Numeroten
Dropped from 50% to about 15%! Just a tip from me!