Hi guys,
I am developing a mobile web site using XHTML
The values and colors of some of the fields in the page are being updated every 1 second using javascript
The code to change the field value is currently:
document.getElementById("name").firstChild.data=newValue or
document.getElementById("name").innerHTML=newValue
The code to change the background color is currently:
document.getElementById("name").style.backgroundColor=newcolor;
The problem is that on Nokia E52 device sometime the fields are not being refreshed with the new value (the fields stay empty without the old value as well) and we need to click the mobile mouse to see the updated values and colors.
Any idea what can cause this problem or what are we doing wrong?
Thanks a lot,
Sarit

Reply With Quote

