You specifically mention Google Chrome. Chrome is stricter about standards than most, especially if your document has a DOCTYPE.
The markup <div id = 'status'> makes me suspicious. Although most browsers are forgiving about common syntax errors it is possible that by having id space separated from equals causes it to be treated as a boolean attribute, which is equivalent to <div id="id">.
You can test this opening the javascript console (Shift+Ctrl+J) and see what results from typing:
$('status')
$('id')
For a solution try it like this:
<div id="status">
PS. I would guess you don't actually want to alter the DIV's style but the span's, for which any of the following is correct.
$$('#status .formw').style.backgroundColor = '#99e83f';
$$('#status span').style.backgroundColor = '#99e83f';
$('status').down('.formw').style.backgroundColor = '#99e83f';
$('status').select('span').style.backgroundColor = '#99e83f';
#for theID, do:$('#status'), I am assuming you are using jQuery here tho. – Jakub Nov 12 '10 at 5:42.style.foois wrong too (and it would be complaining thatstylewas null, not that the return value of$was. (mutter, mutter,$is a hateful variable name: blog.dorward.me.uk/2009/02/19/the-dollar-function-must-die.html ). I'd guess that$was mapped directly on todocument.getElementByIdand that the JS was being run before the div appeared in the source code, but the question is missing so much information that that is just poking around blindly. – Quentin Nov 12 '10 at 5:56