View getHotJarUserID.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
// gets hotjar user id (hjUID) | |
var hjUID = ""; | |
try { | |
if (typeof (hj) != "undefined" && hj.hasOwnProperty("globals")) { | |
// sample: a21c0a02-3b48-53c6-94b4-5604e281e5d8 | |
// the value before the first "-" ("a21c0a02") is the user identifier that can be referenced in the hj interface | |
// use the following snippet to return only the user identifier (eg// "a21c0a02"): | |
// hjUID =hj.globals.get("userId").split("-").shift(); |
View tealium_debugToggle.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// tiq toggle debug | |
(document.cookie.indexOf("utagdb=true") > -1) ? document.cookie = "utagdb=false" : document.cookie = "utagdb=true"; | |
// bookmarklet: javascript:(function()%7B(document.cookie.indexOf("utagdb%3Dtrue")>-1)%3Fdocument.cookie%3D"utagdb%3Dfalse":document.cookie%3D"utagdb%3Dtrue"%3B%7D)()%3B |
View tealium_assetScraper.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// if the element exists, returns the innerText, otherwise an empty string | |
function getInnerText(ele) { | |
if (ele) { | |
return ele.innerText; | |
} | |
return ""; | |
} | |
// executes the query selectors and builds the output |
View Untitled-2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
s.registerPreTrackCallback(function(requestUrl, allowList, hostname) { | |
var doTrack = (allowList.indexOf(hostname) > -1); | |
console.log(allowList, hostname, doTrack); | |
}, ['sandbox.test.com'], document.location.hostname); |
View aep_scrolldemo.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var govScroll = { | |
measurements: { | |
initial: {}, | |
current: {}, | |
max: {}, | |
}, | |
config: { | |
hasMilestoneOccurred: { | |
25: false, // false indicates it has not fired, but should; true indicates it already has (or shouldn't) | |
50: false, |
View aelc_20200930.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// default the flag to false (it gets set to true in registerPostTrackCallback) | |
var flag = false; | |
// wait for flag=true (set in registerPostTrackCallback) to fire the s.tl() call | |
var waitForFlag = setInterval(function() { | |
if(flag) { | |
console.log("fire s.tl() here"); | |
clearInterval(waitForFlag); | |
} | |
}, 50); |
View getParams.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* returns an object with all query parameters as key/value pairs | |
* @param payload - if ommitted, returns all params as an object; if passed as string specifying a parameter, | |
* returns the value of the specified parameter name; can be passed as object { search: document.location.search, returnKey: {{parameter-name}} } | |
* @returns {object} - example: http://example.com?a=a-value&B=B-VALUE = > { "a": "a-value", "b": "B-VALUE"} | |
*/ | |
function getParams(payload) { | |
var searchString = document.location.search, | |
returnKey = ""; |
View regexEscapes.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var x = { | |
regexEscapes: function (str) { | |
str = str.replace(/\//g, "\\/"); | |
str = str.replace(/\?/g, "\\?"); | |
return str; | |
} | |
} | |
var val = x.regexEscapes("/test/this/here?for=now"); |
View wistia_milestone_tracking.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.videos = {}; | |
wistiaEmbeds.forEach(function (vid) { | |
window.videos[vid.hashedId()] = { | |
id: vid.hashedId(), | |
name: vid.name(), | |
duration: vid.duration(), | |
status: { | |
step_play: false, | |
step_25: false, | |
step_50: false, |
NewerOlder