Answers for "how to write javascript inside css file"

0

javascript add css file

var cssFile = document.createElement('link');
    cssFile.rel = 'stylesheet';
    cssFile.href = "styles.css";  // or path for file {themes('/styles/mobile.css')}
    document.head.appendChild(cssFile); // append css to head element
Posted by: Guest on March-25-2021
0

incoroporate js and css file in html

<link rel="stylesheet" href="../css/filename.css">
Posted by: Guest on January-02-2022

Code answers related to "how to write javascript inside css file"

Code answers related to "Javascript"

Browse Popular Code Answers by Language