apply styles using javascript code example
Example 1: add style javascript
// Bad:
element.setAttribute("style", "background-color: red;");
// Good:
element.style.backgroundColor = "red";
Example 2: JS change styles
// select element from DOM
const sample = document.getElementById("myid");
// or you can use *vars*
var sample = document.getElementById("myid");
// change css style
sample.style.color = 'red'; // Change color
// or (not recomended)
sample.style = "color: red"; //This changes all styles. NOT RECOMENDED
Example 3: add css style sheet with javascript
<head>
<script>
function myFunction() {
var x = document.createElement("LINK");
x.setAttribute("rel", "stylesheet");
x.setAttribute("type", "text/css");
x.setAttribute("href", "styles.css");
document.head.appendChild(x);
}
myFunction()
</script>
</head>