forked from dbmedialab-archive/blocker-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
37 lines (33 loc) · 870 Bytes
/
demo.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
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
</head>
<body>
<script type="text/javascript" src="blocker-tracker.js"></script>
<script>
//If you want to use different settings activate the plugin manually before $(window).load()
var settings = {
api : {
swfObject : "http://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"
},
assets : {
path: "assets/",
js: "advertisement.dummy.js",
flash : "flash.dummy.swf"
},
analytics : {
trackType : "_trackEvent",
influenceBounce : false,
catagory : "BlockerTracker",
legacyTracker : true
},
report : {
success : "Showing",
block : "Blocking"
},
id : "blockerTracker_" + new Date().getTime()
}
$.fn.blockerTracker( settings );
</script>
</body>
</html>