Skip to content

Instantly share code, notes, and snippets.

@olegopro
Last active January 16, 2025 16:16
Show Gist options
  • Save olegopro/1006be36586be00da042274f8561d010 to your computer and use it in GitHub Desktop.
Save olegopro/1006be36586be00da042274f8561d010 to your computer and use it in GitHub Desktop.
<script>
function loadStyle(url){
let link = document.createElement('link');
link.href = url;
link.rel = 'stylesheet';
document.body.appendChild(link);
}
loadStyle('css/async.css');
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment