Call cascade style sheet using javascript -
this question has answer here:
- how load css files using javascript? 12 answers
i have requirement need call main css file using javascript header section. instead of having below line within headers
<link rel="stylesheet" href="css/main.css"> how can call using javascript within header tags?
you mean this
document.head.innerhtml+='<link rel="stylesheet" href="css/main.css">';
Comments
Post a Comment