1
0
Fork 0
owenryan.us/source/assets/utils.js

11 lines
338 B
JavaScript
Raw Permalink Normal View History

2023-05-16 03:59:18 +00:00
// Some useful functions used throughout my code
2023-05-16 03:59:18 +00:00
// Based on this SO answer https://stackoverflow.com/a/35880730/9523246
function lazyLoadCSS(url) {
const css = document.createElement('link');
2023-05-16 03:59:18 +00:00
css.href = url;
css.rel = 'stylesheet';
css.type = 'text/css';
document.getElementsByTagName('head')[0].appendChild(css);
}