Skip to content

Instantly share code, notes, and snippets.

@themorgantown
Created February 1, 2021 22:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save themorgantown/975242bf2ee81690214ce2dba7c4e56d to your computer and use it in GitHub Desktop.
Save themorgantown/975242bf2ee81690214ce2dba7c4e56d to your computer and use it in GitHub Desktop.
// old version
var clickTag = "https://www.liquormarts.ca/retail-marketing/hot-buy?utm_source=eyereturn&utm_medium=display&utm_campaign=hot_buys"
function clickURLTriggered() {
window.open(window.clickTag, '_blank')
}
clickURLTriggered()
// new version:
var clickTag = "https://www.liquormarts.ca/retail-marketing/hot-buy?utm_source=eyereturn&utm_medium=display&utm_campaign=hot_buys"
function clickURLTriggered() {
eyeBuild.doClick(0)
}
clickURLTriggered()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment