-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvisits-without-converting
97 lines (89 loc) · 2.86 KB
/
visits-without-converting
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<script>
// script that increments a cookie based counter based on how many visits they've made to the site without converting.
// Modification exists for any goal completions
var po_sessions = {
visitCookie: '_siteVisits',
cookieDomain: 'chillfactore.com',
liveCookie: '_liveSession',
formPhase2: 'booking2.chillfactore.com',
formPhase2Reached: function() {
return (window.location.href.indexOf(this.formPhase2) > -1);
},
formCookie: '_formSession',
transactionCompleteURL: '/confirmation.aspx',
transactionCompleted: function() {
return (window.location.href.indexOf(this.transactionCompleteURL) > -1);
},
eraseCookie: function(name)
{
this.createCookie(name, "", -1);
},
readCookie: function(name)
{
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for (var i = 0; i < ca.length; i++) {
var c = ca[i];
while (c.charAt(0) == ' ') c = c.substring(1, c.length);
if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);
}
return null;
},
updateCookie: function(name, initValue, days) {
if (this.readCookie(name) !== null) {
var value = this.readCookie(name);
this.createCookie(name, value, days);
} else {
this.createCookie(name, initValue, days);
}
},
createCookie: function(name, value, days) {
var path = "; path=/";
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
var expires = "; expires=" + date.toGMTString();
} else var expires = "";
if(this.cookieDomain)
{
path = ";domain=."+this.cookieDomain+path;
}
document.cookie = name + "=" + value + expires + path;
},
fireVisitCookie: function(name) {
var cookieVisits = this.readCookie(name);
var totalVisits = cookieVisits ? parseInt(cookieVisits) : 0;
this.createCookie(name,totalVisits+1,120);
},
initialise: function()
{
if(this.liveSession() == null)
{
this.fireVisitCookie(this.visitCookie);
}
this.updateCookie(this.liveCookie,1,0);
if(this.liveSession() == 1 && this.formPhase2Reached())
{
this.fireVisitCookie(this.formCookie);
this.eraseCookie(this.liveCookie);
this.updateCookie(this.liveCookie,2,0);
}
if(this.transactionCompleted())
{
this.eraseCookie(this.visitCookie);
this.eraseCookie(this.formCookie);
}
return true;
},
liveSession: function() {
return this.readCookie(this.liveCookie);
},
sessionCounter: function() {
return this.readCookie(this.visitCookie);
},
formCounter: function() {
return this.readCookie(this.formCookie);
}
};
po_sessions.initialise();
</script>