gaAddonsgaAddons - Google Analytics Addons by Stéphane Hamel

Documentation: Calls Reference

_trackRealBounce

If staying more than "delay" seconds on the 1st page of a visit, an event is fired to force a NoBounce, resulting in more accurate bounce rate information.

_gaq.push(['_trackRealBounce', {
	category: 'NoBounce', // optional string
	delay: 30, // optional integer
	value: 0 // optional real
	}]);
      

Parameters

category 'NoBounce'|string
Events links are tracked with a Category, Action and optional Value. This is the label that will show under the Content/Event Tracking/Categories report.The Action will be 'over delay seconds'. This parameter default value is 'NoBounce'.
delay 30|integer
The number of seconds to wait for a user action before triggering the NoBounce event.This parameter default value is 30.
value 0|real
You can assign a value for this event. This parameter default value is 0.