-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
43 lines (31 loc) · 1.31 KB
/
test.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Track JS event UI with Google Analytics test</title>
<!-- <script type="text/javascript" src="static/binReady.js"></script>-->
<script type="text/javascript" src="static/jquery.min.js"></script>
<script type="text/javascript" src="static/logUserInteraction.js"></script>
<script type="text/javascript" src="static/JSON/json2.js"></script>
<!--
To evaluate the pertience of User Interface in a web context,
it's really important to record all trail of User action with
signifiant élément of interface .
This page is a demo of a quick and simple collectors
to collect data with Google Analytics or other collector.
We use the Event Tracking Model, more infos on :
http://code.google.com/intl/fr-FR/apis/analytics/docs/tracking/eventTrackerGuide.html
We propose to map the value as following :
-->
</head>
<body id="container">
<script type="text/javascript">
</script>
<a name="PlayButton" href="#" name="play"
onClick="_gaq.push(['_trackEvent', 'ControlBar', 'onClick', '']);"
hover="_gaq.push(['_trackEvent', 'ControlBar', 'hover', '']);"
>Play</a>
<a href="#2" name="pause"> </a>
<a href="#3" name="seek"> </a>
<div id="log">log </div>
</body>
</html>