Dear all, i've got following script here (don't blame me i don't know javascript at all)
$$('#status').each(function(item) {
var state = item.innerHTML
if (state == "ON_GOING"){
item.replace('<img src="layout/images/ongo.png"/>');
}
if (state == "PAUSED"){
item.replace('<img src="layout/images/pause.png"/>');
}
});
which is stored at the bottom of the document. i also tried to make it 'named' and call from 'onload' parameter of 'body' tag, as well as by 'window.onload = ' statement. But it's being displayed correctly only in firefox but not in IE or Chrome. In Prototype documentation it is said that it's designed for all of those browser, however i still get the issue, could you kindly tell what's wrong with this piece of code and how should i compose to make it work (to update 'status' id in html after page loads).
So basically i'd like to replace initial text in block with image, but it's not happening.
Thanks in advance.