How to change just the div's background-color and not the entirely body-color?

Hi there charlms350,

change this…

  var 
    hr = (new Date()).getHours(),
    body = document.body,
    bstyle = body.style,    
    hello = document.querySelector(".hello");

…to this…

  var
    hr = new Date().getHours(),
    hello = document.querySelector(".hello"),   
    bstyle = hello.style; 

coothead

1 Like

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.