views:

141

answers:

2

Hello i'm developing a pocket ie site. Im runnning pocket PC 2003 SE emulator with pocket ie.

i have a and want to reference it from javascript.

getElementById and document.getElementsByTagName don't work. In an example I saw document.all[] and even xx.id but all don't work.

Can anyone enlighten me ?

+1  A: 

You can start from here and see the exact support this type of devices have.

Under the Web Development section they referred to For more information, see Designing Web Sites for Mobile Devices..

From this page your options look grim... :-(

Dror
+1  A: 

In the end it turned out to be..

document.[id of the div]

So: <div id="xx"> => document.xx

Julian de Wit