First create a Google Analytics Account using your gmail account.
Get the property id something starts with UA-xxxx-x
Include the provided Javascript code with the above property id immediately before
This is a sample generated code.
[sourcecode language="javascript"]
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-xxxxxxxx-x']);
_gaq.push(['_trackPageview']);
(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);
})();
[/sourcecode]
Track your visitors in the way they interact with your web page.
Form submitting, mouse clicks or any other events can be tracked.
Example :
[sourcecode language="html"]
<a href="#" onclick="_gaq.push(['_trackEvent', 'Ads', 'Sidebar', 'Food']);">track me</a>
<input type="submit" value="Sign Up Now!" onclick="_gaq.push(['_trackEvent', 'Signup', 'click', 's1']);"/>
[/sourcecode]
Change _gaq.push() by providing suitable parameters.
_gaq.push(['_trackEvent', category, action, label, value])
Subscribe to:
Post Comments (Atom)
How to enable CORS in Laravel 5
https://www.youtube.com/watch?v=PozYTvmgcVE 1. Add middleware php artisan make:middleware Cors return $next($request) ->header('Acces...
-
< Requirements Java Development Kit (JDK) NetBeans IDE Apache Axis 2 Apache Tomcat Server Main Topics Setup Development Environ...
-
Download Sourcecode [sourcecode language="csharp"] using System; using System.Collections.Generic; using System.Linq; using System...
No comments:
Post a Comment