change style addevent listener javascript code example
Example 1: addeventlistener js to change style
var button = document.querySelector("button");
button.addEventListener("click", function() {
const curColour = document.body.style.backgroundColor;
document.body.style.backgroundColor = curColour === 'red' ? 'blue' : 'red';
});
Example 2: addeventlistener js to change style
var button = document.querySelector("button");
button.addEventListener("click", function() {
const curColour = document.body.style.backgroundColor;
if (curColour === 'red') {
document.body.style.backgroundColor = "blue";
}
else {
document.body.style.backgroundColor = "red";
}
});