Is it possible to import css stylesheets into a html page using Javascript? If so, how can it be done?
P.S the javascript will be hosted on my site, but I want users
var fileref = document.createElement("link") fileref.setAttribute("rel", "stylesheet") fileref.setAttribute("type", "text/css") fileref.setAttribute("th:href", "@{/filepath}") fileref.setAttribute("href", "/filepath")
I'm using thymeleaf and this is work fine. Thanks