Answers for "how to add css to javascript"

11

add style javascript

// Bad:
element.setAttribute("style", "background-color: red;");
// Good:
element.style.backgroundColor = "red";
Posted by: Guest on September-08-2020
2

add css in javascript

document.getElementById("demo").style.display = "none";
Posted by: Guest on November-09-2020
7

how to give css style in javascript

document.getElementById("myH1").style.color = "red";
Posted by: Guest on September-18-2020
2

append css file with javascript

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

Code answers related to "how to add css to javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language