zarim,
https://javascript.ru/forum/dom-wind...tml#post264509
<script>
function addCSS(url) {
var a = document.createElement('link');
a.href = url+"?nocache="+Math.random();
a.rel = 'StyleSheet';
a.type = 'text/css';
document.head.appendChild(a);
}
addCSS('path/filename.css');
</script>