Created
February 22, 2022 13:43
-
-
Save subzey/6a560778a59361d3d4c3fb933cb37bb1 to your computer and use it in GitHub Desktop.
dns-prefetch
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
<!doctype html> | |
<html> | |
<head> | |
<link rel="dns-prefetch" href="https://s3.tradingview.com/"> | |
</head> | |
<body> | |
<script> | |
setTimeout(() => { | |
const s = document.createElement('script'); | |
s.src = 'https://s3.tradingview.com/tv.js'; | |
document.body.appendChild(s); | |
}, 65000); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment