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.
Revisions
-
freddielore created this gist
Jun 28, 2019 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,33 @@ <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>