Last active
July 13, 2021 17:29
-
-
Save tillkruss/712f8260ed4f85fddff9ed7c65428e2d to your computer and use it in GitHub Desktop.
Async Lead Dyno script
This file contains hidden or 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
<script> | |
(function(key) { | |
var script = document.createElement('script'); | |
script.src = 'https://static.leaddyno.com/js'; | |
script.async = true; | |
script.onload = function () { | |
LeadDyno.key = key; | |
LeadDyno.recordVisit(); | |
LeadDyno.autoWatch(); | |
}; | |
document.body.appendChild(script); | |
})('<lead-dyno-key>'); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment