Forked from freddielore/public-defer-javascript.html
Created
August 14, 2021 01:19
-
-
Save rafszul/048e66eb5cc9d95de93e516b67a8cc09 to your computer and use it in GitHub Desktop.
[Defer Third Party Scripts] Defer third party scripts #javascript #html #public
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
<script type="text/javascript"> | |
var app = { | |
init: function() { | |
window.addEventListener('scroll', function() { | |
if (window.__he == undefined) { | |
app.load(); | |
} | |
}); | |
window.addEventListener('mousemove', function() { | |
if (window.__he == undefined) { | |
app.load(); | |
} | |
}); | |
}, | |
load: function() { | |
var script = document.createElement('script'); | |
script.src = '//healthengine.com.au/webplugin/appointments.js'; | |
script.defer = true; | |
script.setAttribute('data-he-id', 'foo'); | |
script.setAttribute('data-he-button', 'true'); | |
script.setAttribute('data-he-img', 'HE_BOOKNOW_1.png'); | |
document.getElementById('health-engine').appendChild(script); | |
script.onload = function() { | |
window['__he'] = true; | |
} | |
window['__he'] = true; | |
} | |
}; | |
app.init(); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment