These don’t work in client 5.5 (they do, of course, in IE):
divelement.style.visibility=’hidden’;
divelement.innerHTML=’some random content’;
Use these instead:
divelement.appendChild(document.createTextNode(’whassssssup’));
divelement.style.display=’none’;
Also, the 5.3 and later version of the sessionPOD:
avantgo.preferences.setStringValueForKey(”key”, myValue);
myValue = avantgo.preferences.getStringValueForKey(”key”);
–
Ran into an interesting problem yesterday in both IE and Avgo — we left the language=Javascript declaration out of the script tag and everything failed without any script errors. [...]