Necesito cambiar el nombre de clase del body en HTML después de usar location.href()
location.href = "index.html"; document.querySelector("body").className = "whiteBackgroundColor";^^^ No funciona :(
Use esta declaración de JavaScript para establecer la clase en el cuerpo
if(!document.body.classList.contains("whiteBackgroundColor")) { document.body.classList.add("whiteBackgroundColor"); }