Trying to make a variable __lc.group
dynamic so that the group number is set based on the URL of the page, this is the code I have tried but it doesn't seem to have worked.
Not sure why it wouldn't be working. This is to dynamically set the group variable for a live chat function on site so I can set different operators for differnet pages of the site.
if(window.location.href.indexOf("netball") > -1) {
__lc.group = 1;
}
if(window.location.href.indexOf("football") > -1) {
__lc.group = 5;
}
if(window.location.href.indexOf("basketball") > -1) {
__lc.group = 2;
}
if(window.location.href.indexOf("social") > -1) {
__lc.group = 3;
}
if(window.location.href.indexOf("fitness") > -1) {
__lc.group = 6;
}
if(window.location.href.indexOf("softball") > -1) {
__lc.group = 4;
}
if(window.location.href.indexOf("volleyball") > -1) {
__lc.group = 4;
}
if(window.location.href.indexOf("dodgeball") > -1) {
__lc.group = 4;
}
if(window.location.href.indexOf("american") > -1) {
__lc.group = 4;
}
if(window.location.href.indexOf("ultimate") > -1) {
__lc.group = 4;
}
Full code of script is:
<!-- Start of LiveChat (www.livechatinc.com) code -->
<script type="text/javascript">
var __lc = {};
__lc.license = XXXXX;
if(window.location.href.indexOf("netball") > -1) {
__lc.group = 1;
}
if(window.location.href.indexOf("football") > -1) {
__lc.group = 5;
}
if(window.location.href.indexOf("basketball") > -1) {
__lc.group = 2;
}
if(window.location.href.indexOf("social") > -1) {
__lc.group = 3;
}
if(window.location.href.indexOf("fitness") > -1) {
__lc.group = 6;
}
if(window.location.href.indexOf("softball") > -1) {
__lc.group = 4;
}
if(window.location.href.indexOf("volleyball") > -1) {
__lc.group = 4;
}
if(window.location.href.indexOf("dodgeball") > -1) {
__lc.group = 4;
}
if(window.location.href.indexOf("american") > -1) {
__lc.group = 4;
}
if(window.location.href.indexOf("ultimate") > -1) {
__lc.group = 4;
}
(function() {
var lc = document.createElement('script'); lc.type = 'text/javascript'; lc.async = true;
lc.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'cdn.livechatinc.com/tracking.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(lc, s);
})();
</script>
<!-- End of LiveChat code -->
Heres a working, and more elegant way to handle the checking. It defines an object with the names and corresponding numbers, then iterates over it and compares to the url. https://jsfiddle.net/gb2tr4a9/
__lc = {license:123456789}
var categories = {
netball:4 ,
football:5,
basketball:2,
fiddle:99
}
for (var c in categories) {
if(window.location.href.indexOf(c) != -1) {
__lc.group = categories[c];
break;
}
}
console.log(__lc);
the response is an object where {group=99}