[Javascript] problems with NN6-accessing the dynamic field names in Javascri

Peter-Paul Koch gassinaumasis at hotmail.com
Tue Nov 27 02:45:18 CST 2001



>Briefly , my problem is how can I access
>the dynamic field names in Javascript with NN
>
>we are making our application compatible with NN6.
>
>  temp1=document.all.item("customerids"+count).value;

Don't use the MS DOM at all, no document.all needed. Good old document.forms 
works in all browsers:

temp1=document.forms.elements["customerids"+count].value

ppk

_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp




More information about the Javascript mailing list