Skip to main content

Lower Bounce Rate In Google Analytics with a Timer

“Bounce rate” in Google Analytics is one of the key metrics that helps webmasters to evaluate the quality of their website traffic. Bounce rate represents the percentage of visitors who enter the site and "bounce" or leave instantly rather than continue viewing other pages within the same site. This is a great indication on how relevant the content was for the user and how engaged they were with your website.

Generally it is believed that a high bounce rate is an indication that the site entrance pages aren't relevant to the visitors because it caused them to leave the website without exploring other pages. An entry page with a low bounce rate means that the page effectively causes visitors to view more pages and continue on deeper into the web site.

But a high bounce rate is not always a sign of poor performance. A high bounce rate can also occur if a visitor came to your page, found what they came looking for and left satisfied without viewing another page. In such cases, the entry page could have a very high bounce rate, as high as 80%, yet they might still be considered successful due to having served their purpose.

Nonetheless it is still desirable and the wish of every webmaster to retain visitors on their website and get them to view as many pages as possible. But if that high bounce rate figure on your Google Analytics dashboard is bothering you, there is a way to lower it. Google calls it “adjusted bounce rate”.

You implement a small tweak to your Google Analytics code which executes an event when a user has spent over a certain amount of time on the webpage. Once the event is executed, the visitor is no longer counted as “bounce,” even though no additional pageview is recorded. Only users who have not spent a required “minimal time” on your website will be counted as a bounce.

Depending on the website, the time can range from 10 seconds to few minutes. You should decide for yourself the amount of time you consider the user to be sufficiently engaged with your website or product.

To implement the timer code, add the line function setTimeout as shown in the code below. Here the delay is set to 15 seconds.

<script type="text/javascript">

   var _gaq = _gaq || [];
   _gaq.push(['_setAccount', 'UA-XXXXXXX-1']);
   _gaq.push(['_trackPageview']);
   setTimeout("_gaq.push(['_trackEvent', '15_seconds', 'read'])",15000);

   (function() {
     var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
     ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
     var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
   })();

</script>

Comments

  1. This information is real piece of gem, thanks for the tip and the analytics blog link.

    ReplyDelete

Post a Comment

Popular posts from this blog

69 alternatives to the default Facebook profile picture

If you have changed the default Facebook profile picture and uploaded your own, it’s fine. But if not, then why not replace that boring picture of the guy with a wisp of hair sticking out of his head with something different and funny?

How to Record CPU and Memory Usage Over Time in Windows?

Whenever the computer is lagging or some application is taking too long to respond, we usually fire up task manager and look under the Performance tab or under Processes to check on processor utilization or the amount of free memory available. The task manager is ideal for real-time analysis of CPU and memory utilization. It even displays a short history of CPU utilization in the form of a graph. You get a small time-window, about 30 seconds or so, depending on how large the viewing area is.

How to Schedule Changes to Your Facebook Page Cover Photo

Facebook’s current layout, the so called Timeline, features a prominent, large cover photo that some people are using in a lot of different creative ways. Timeline is also available for Facebook Pages that people can use to promote their website or business or event. Although you can change the cover photo as often as you like, it’s meant to be static – something which you design and leave it for at least a few weeks or months like a redesigned website. However, there are times when you may want to change the cover photo frequently and periodically to match event dates or some special promotion that you are running or plan to run. So, here is how you can do that.