I'm trying to make a webpage change the background color every one second using JavaScript.
I'm using setTimeout but I can't figure out how to get my variable to change in the function. Here's my code:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function changecolors() {
x = 1; // <-- I know this is wrong, I just don't know where to place it
var t = setTimeout("change()", 1000);
}
function change() {
while(x < 3) {
if(x = 1) {
color = "red";
x++;
} else if (x = 2) {
color = "green";
x = 1;
}
document.body.style.background = color;
}
}
</head>
<body onload="changecolors()">
</body>
</html>
xwill always be smaller3). (c) You are assigning instead of comparing. (d) You call the function only once after one second, not every seconds. – Felix Kling Nov 23 '11 at 23:54