<script>
document.write("<link href='css/css.css' rel='styleSheet' type='text/css' />");
------------------------------Another way----------------------------------
</script>
document.write("<link href='css/css.css' rel='styleSheet' type='text/css' />");
------------------------------Another way----------------------------------
var l=document.createElementNS("http://www.w3.org/1999/xhtml","link");
l.setAttribute("rel", "stylesheet");
l.setAttribute("type", "text/css");
l.setAttribute("href", "/css/style-js.css");
document.getElementsByTagName("head")[0].appendChild(l);
</script>
No comments:
Post a Comment