galvin Posted May 24, 2011 Share Posted May 24, 2011 Pretty new to javascript so just curious if anyone sees anything blatantly wrong with this code snippet below. I definitely have a DIV with an id of "answer1" that has a background color of "#eeeeee", but its not getting changed to white. Even if i change the code to something like "!== 'purple'" (for testing since I have nothing with a purple bg), it still doesnt work. ... for (var i = 0; i <= 8; i++) { if (document.getElementById('answer'+i).style.backgroundColor == '#eeeeee') { document.getElementById('answer'+i).style.backgroundColor = '#ffffff'; } } Quote Link to comment https://forums.phpfreaks.com/topic/237286-for-loop-with-css-background-color/ Share on other sites More sharing options...
.josh Posted May 24, 2011 Share Posted May 24, 2011 different browsers render what you put differently. For instance, it could shorten it to '#eee' or do it as rgb(value,value,value), or '#eeeeee' or 'eeeeee'. Try adding the following to your loop (not inside the condition): alert(document.getElementById('answer'+i).style.backgroundColor); look at what the value actually is (and compare in different browsers and versions that you are coding for). Quote Link to comment https://forums.phpfreaks.com/topic/237286-for-loop-with-css-background-color/#findComment-1219401 Share on other sites More sharing options...
galvin Posted May 24, 2011 Author Share Posted May 24, 2011 cool thanks. Chrome and firefox are seeing it as "rgb(238, 238, 238)" while IE is seeing it as "#eeeeee" why can't all browsers agree on one format Quote Link to comment https://forums.phpfreaks.com/topic/237286-for-loop-with-css-background-color/#findComment-1219426 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.