Created
December 14, 2021 11:47
-
-
Save TeddyBear06/db66495b60e33432524140ec0acd30cd to your computer and use it in GitHub Desktop.
HubSpot real defer loading
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
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Document</title> | |
</head> | |
<body> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" | |
integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" | |
crossorigin="anonymous" | |
referrerpolicy="no-referrer"> | |
</script> | |
<script type='text/javascript'> | |
function loadHubSpotChat() { | |
(function () { | |
var s=document.createElement('script'); | |
s.type='text/javascript'; | |
s.async=true; | |
s.src='https://js.hs-scripts.com/XXXXXXXX.js'; | |
var x=document.getElementsByTagName('script')[0]; | |
x.parentNode.insertBefore(s,x); | |
}()); | |
} | |
$(document).ready(function() { | |
setTimeout(function() { | |
loadHubSpotChat() | |
}, 5000); | |
}); | |
</script> | |
</body> | |
</html> |
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
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Document</title> | |
</head> | |
<body> | |
<!-- Start of HubSpot Embed Code --> | |
<script type="text/javascript" id="hs-script-loader" async defer src="https://js.hs-scripts.com/XXXXXXXX.js"></script> | |
<!-- End of HubSpot Embed Code --> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment