I Need To Change The ClassName of body in HTML after using location.href()
location.href = "index.html";
document.querySelector("body").className = "whiteBackgroundColor";
^^^ Does Not Work :(
Use this JavaScript statement to set class to body
if(!document.body.classList.contains("whiteBackgroundColor"))
{
document.body.classList.add("whiteBackgroundColor");
}