user3443558
user3443558

Reputation: 1

Need help changing background colour based on results obtained from quiz?

I'm having issues in changing the background colour of the page based on the score obtained in the quiz.

I attempted something like this:

var scorecolour;
if (actualchoices[q] >= 1) {
    scorecolour=document.getElementById("main");
    scorecolour.style.backgroundcolor="green"
} 
else {
    scorecolour=document.getElementById("main");
    scorecolour.style.backgroundcolor="red"
}

I'm pretty new to this website, if there is anything else that is needed just ask I guess :)

Thank you guys

Upvotes: 0

Views: 79

Answers (1)

A J
A J

Reputation: 2140

Change the script

scorecolour.style.backgroundColor = "green"

Its not backgroundcolor its backgroundColor

check this working fiddle

Upvotes: 2

Related Questions