Hello,
I have a Google Gears application that works OK(to a point on the
desktop). The issue I am having at present is that the application is
for Windows Mobile 6. I have the emulator running but am getting the
following error(no errors on the desktop) when trying to create the
localserver and store:
“Line 105, Character 2 – Object doesn’t support this property or
method”.
Around Line 105 is the function textOut(s). I have checked on the
Gears website regarding DOM compatibility with WM6 and all looks OK.
My code is very heavily based on the tutorials, demos snippets from
the Gears website.
Any ideas on what the issue might be here?
Thanks,
Tosca
// Utility function to output some status text.
function textOut(s) {
var elm = document.getElementById("textOut");
while (elm.firstChild) {
elm.removeChild(elm.firstChild);
}
elm.appendChild(document.createTextNode(s));
}