|
@ -23,7 +23,7 @@ $(function () {
|
23
|
23
|
Custom tags supported out-of-the-box
|
24
|
24
|
------------------------------------
|
25
|
25
|
|
26
|
|
Often you want to track more meaningful information along with what is provided. Simply apply any number of custom attributes prefixed with **"data-analytics-"** and we will take care of the rest!
|
|
26
|
Often you want to track more meaningful information instead of just page hits. Simply apply any number of custom attributes prefixed with **data-analytics-** and we will take care of the rest!
|
27
|
27
|
|
28
|
28
|
```html
|
29
|
29
|
<a id="myLink" href="#" data-analytics-outfit="pajamas" data-analytics-shoes="slippers">My link</a>
|
|
@ -42,7 +42,7 @@ This will send the following information back:
|
42
|
42
|
Determining the flow
|
43
|
43
|
--------------------
|
44
|
44
|
|
45
|
|
It is also possible to track the flow a user goes through while visiting your page if you have an uniquely identifier piece of information. This can be done during initialization as such:
|
|
45
|
It is also possible to track the flow of users while they visit your site by specifying their unique identifier. This can be done during initialization like so:
|
46
|
46
|
|
47
|
47
|
```javascript
|
48
|
48
|
$(function () {
|