-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.html
More file actions
36 lines (25 loc) · 979 Bytes
/
example.html
File metadata and controls
36 lines (25 loc) · 979 Bytes
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
<doctype html>
<head>
<title>Example Content Page</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="LinkShim.dev.js"></script>
<script type="text/javascript">
LinkShim.init();
LinkShim.addPageParams({
pageVersion: 'a', // Great for A/B testing!
h: 'oDecbGLEeOFPJbhlit84SZmWS', // Note that 'hash' is now 'h'
anyRandomPageVar: '3000'
});
</script>
<script >
</script>
</head>
<body>
<a data-track="" href="http://example.com">This link is outbound, and will be tracked!</a>
<br/><Br/>
<a data-track="placement=2" href="http://www.download.com">This link will also save placement=2 within redis</a>
<br/>
<a data-track="placement=2&version=2" href="http://www.download.com">This will save placement=2&version=2 as well!</a>
<br/><br/>
<a href="http://www.download.com">This link is outbound, and will not be tracked!</a>
</body>