Hello all

I try to make an application for my pocket pc ( windows mobile 2003 )

I try to change the content of the DIV Html Tag ( with innerHTML
property )
Exemple

<DIV id="LISTVALUE"></DIV>
...
...
LISTVALUE.innerHTML = " <select name='menu'
onchange='Affiche2(this.value);' > <option value='0'> Action10 Number0
</option><option value='1'> Action10 Number1 </option> </select>";

The object apears to the screen , but don't respond to javascript
event ( onchange )

can someone help me please

Hava a good day

Re: Javascript engine with DIV Html Tab by David

David
Mon Aug 16 14:03:06 CDT 2004

This is a problem in the Onchange part, which is fixed in the latest code
for Pocket PC 2003 (Build 14053 or newer). How can you get the fix? The
manufacturer of your Pocket PC would need to make available a new ROM image.
NOTE: Build 14053 is Pocket PC 2003. Pocket PC Second Edition is Build 14049
so it should be fine as well.

To make your routine work on all Pocket PCs, you might want to use a
different method.

David
------
This posting is provided "AS IS" with no warranties, and confers no rights.

"Chevalier Jerome" <jchevalier@gold-solutions.com> wrote in message
news:220f9fd5.0407290126.60a092b9@posting.google.com...
> Hello all
>
> I try to make an application for my pocket pc ( windows mobile 2003 )
>
> I try to change the content of the DIV Html Tag ( with innerHTML
> property )
> Exemple
>
> <DIV id="LISTVALUE"></DIV>
> ...
> ...
> LISTVALUE.innerHTML = " <select name='menu'
> onchange='Affiche2(this.value);' > <option value='0'> Action10 Number0
> </option><option value='1'> Action10 Number1 </option> </select>";
>
> The object apears to the screen , but don't respond to javascript
> event ( onchange )