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

Carl Adler carl at carladler.org
Tue Nov 27 08:04:35 CST 2001


> From:  "P Sreenivasa Rao" <psrao at cmcltd.com>
> Reply-To: javascript at LaTech.edu
> Date: Tue, 27 Nov 2001 19:19:38 -0800
> To:  <javascript at LaTech.edu>
> Subject: Re: [Javascript] problems with NN6-accessing the dynamic field names
> in Javascri
> 
> Hi all,
> I got my problem solved with PPK's suggestion.
> I thank PPK.
> One more doubt.
> I'm using an applet and I'm enabling it by <OBJECT> in IE and then I'm able
> to access that Object in javascript.
> in Javascript,I'm performing some operations
> Now I'm moving to NN6.0 and it's giving problems.
> Can I access the applet (may be using <EMBED> tag) from javascript and in
> javascript can I able to perform operations on that object.

Netscape 6 does not support JavaScript to java communication on the mac
though the latest mozilla beta on which it is based supposedly  does. (I
have not checked this.) No IE Mac browser does. The only Mac browser that I
no for sure supports this is Hot Java from Sun.
Carl


> 
> Thanks a lot to all.
> Have a nice time,
> 
> best regards,
> Sreenivas
> 
> ----- Original Message -----
> From: "Peter-Paul Koch" <gassinaumasis at hotmail.com>
> To: <javascript at LaTech.edu>
> Sent: Tuesday, November 27, 2001 12:45 AM
> Subject: Re: [Javascript] problems with NN6-accessing the dynamic field
> names in Javascri
> 
> 
>> 
>> 
>> 
>>> 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
>> 
>> _______________________________________________
>> Javascript mailing list
>> Javascript at LaTech.edu
>> http://www.LaTech.edu/mailman/listinfo/javascript
>> 
> 




More information about the Javascript mailing list