Rocksolid Light

Welcome to RetroBBS

mail  files  register  newsreader  groups  login

Message-ID:  

Lack of skill dictates economy of style. -- Joey Ramone


devel / comp.lang.javascript / Message between "child?" documents

SubjectAuthor
* Message between "child?" documentsJonas Thörnvall
`* Re: Message between "child?" documentsJonas Thörnvall
 `* Re: Message between "child?" documentsJonas Thörnvall
  `* Re: Message between "child?" documentsJonas Thörnvall
   `* Re: Message between "child?" documentsJonas Thörnvall
    `* Re: Message between "child?" documentsluserdroog
     `- Re: Message between "child?" documentsJonas Thörnvall

1
Message between "child?" documents

<615cb71f-8e6f-4afb-b92e-00d8dde3f7ecn@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17478&group=comp.lang.javascript#17478

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a05:6214:d04:: with SMTP id 4mr23241078qvh.26.1638591845767;
Fri, 03 Dec 2021 20:24:05 -0800 (PST)
X-Received: by 2002:aca:2412:: with SMTP id n18mr13489950oic.119.1638591845499;
Fri, 03 Dec 2021 20:24:05 -0800 (PST)
Path: i2pn2.org!rocksolid2!i2pn.org!news.neodome.net!feeder1.feed.usenet.farm!feed.usenet.farm!news-out.netnews.com!news.alt.net!fdc2.netnews.com!peer03.ams1!peer.ams1.xlned.com!news.xlned.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Fri, 3 Dec 2021 20:24:05 -0800 (PST)
Injection-Info: google-groups.googlegroups.com; posting-host=84.217.164.86; posting-account=kxPkPAoAAACjJi8w0gL9bnyznPzdw9HW
NNTP-Posting-Host: 84.217.164.86
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <615cb71f-8e6f-4afb-b92e-00d8dde3f7ecn@googlegroups.com>
Subject: Message between "child?" documents
From: jonas.thornvall@gmail.com (Jonas Thörnvall)
Injection-Date: Sat, 04 Dec 2021 04:24:05 +0000
Content-Type: text/plain; charset="UTF-8"
X-Received-Bytes: 1501
 by: Jonas Thörnvall - Sat, 4 Dec 2021 04:24 UTC

I have a main document with several child documents as iframes.
I have had no problem passing between child and parent, but now i want to mass message between two child documents, but i get error message that the iframe document does not exist?

So how should i pass the message between the childs.
This message
MultiID.document.getElementById("MVOL").value=CCvol;
Is sent from an iframe named SYNTHED , function.

I also tried
parent.MultiID.document.getElementById("MVOL").value=CCvol;

Re: Message between "child?" documents

<c1228502-a7d3-4cb6-b3c2-6831ba1592dan@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17479&group=comp.lang.javascript#17479

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:ac8:5fc4:: with SMTP id k4mr25227564qta.472.1638592450549; Fri, 03 Dec 2021 20:34:10 -0800 (PST)
X-Received: by 2002:a05:6808:14c2:: with SMTP id f2mr13253081oiw.154.1638592450292; Fri, 03 Dec 2021 20:34:10 -0800 (PST)
Path: i2pn2.org!i2pn.org!aioe.org!news.uzoreto.com!newsfeed.xs4all.nl!newsfeed9.news.xs4all.nl!tr1.eu1.usenetexpress.com!feeder.usenetexpress.com!tr1.iad1.usenetexpress.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Fri, 3 Dec 2021 20:34:10 -0800 (PST)
In-Reply-To: <615cb71f-8e6f-4afb-b92e-00d8dde3f7ecn@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=84.217.164.86; posting-account=kxPkPAoAAACjJi8w0gL9bnyznPzdw9HW
NNTP-Posting-Host: 84.217.164.86
References: <615cb71f-8e6f-4afb-b92e-00d8dde3f7ecn@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <c1228502-a7d3-4cb6-b3c2-6831ba1592dan@googlegroups.com>
Subject: Re: Message between "child?" documents
From: jonas.thornvall@gmail.com (Jonas Thörnvall)
Injection-Date: Sat, 04 Dec 2021 04:34:10 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
Lines: 19
 by: Jonas Thörnvall - Sat, 4 Dec 2021 04:34 UTC

lördag 4 december 2021 kl. 05:24:11 UTC+1 skrev Jonas Thörnvall:
> I have a main document with several child documents as iframes.
> I have had no problem passing between child and parent, but now i want to mass message between two child documents, but i get error message that the iframe document does not exist?
>
> So how should i pass the message between the childs.
> This message
> MultiID.document.getElementById("MVOL").value=CCvol;
> Is sent from an iframe named SYNTHED , function.
>
> I also tried
> parent.MultiID.document.getElementById("MVOL").value=CCvol;
Passing a message between parent and child document is easy, just.
parent.document.getElementById("MVOL").value=CCvol; //From child to parent
MultiID.document.getElementById("MVOL").value=CCvol; //From parent to child

But howto pass from child to child?

Re: Message between "child?" documents

<51577ac0-76af-4403-97e2-680add2427ban@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17480&group=comp.lang.javascript#17480

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a05:6214:d84:: with SMTP id e4mr24388340qve.128.1638593171128; Fri, 03 Dec 2021 20:46:11 -0800 (PST)
X-Received: by 2002:a9d:2647:: with SMTP id a65mr19521128otb.185.1638593170907; Fri, 03 Dec 2021 20:46:10 -0800 (PST)
Path: i2pn2.org!rocksolid2!i2pn.org!aioe.org!news.uzoreto.com!tr1.eu1.usenetexpress.com!feeder.usenetexpress.com!tr3.iad1.usenetexpress.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Fri, 3 Dec 2021 20:46:10 -0800 (PST)
In-Reply-To: <c1228502-a7d3-4cb6-b3c2-6831ba1592dan@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=84.217.164.86; posting-account=kxPkPAoAAACjJi8w0gL9bnyznPzdw9HW
NNTP-Posting-Host: 84.217.164.86
References: <615cb71f-8e6f-4afb-b92e-00d8dde3f7ecn@googlegroups.com> <c1228502-a7d3-4cb6-b3c2-6831ba1592dan@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <51577ac0-76af-4403-97e2-680add2427ban@googlegroups.com>
Subject: Re: Message between "child?" documents
From: jonas.thornvall@gmail.com (Jonas Thörnvall)
Injection-Date: Sat, 04 Dec 2021 04:46:11 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
Lines: 24
 by: Jonas Thörnvall - Sat, 4 Dec 2021 04:46 UTC

lördag 4 december 2021 kl. 05:34:14 UTC+1 skrev Jonas Thörnvall:
> lördag 4 december 2021 kl. 05:24:11 UTC+1 skrev Jonas Thörnvall:
> > I have a main document with several child documents as iframes.
> > I have had no problem passing between child and parent, but now i want to mass message between two child documents, but i get error message that the iframe document does not exist?
> >
> > So how should i pass the message between the childs.
> > This message
> > MultiID.document.getElementById("MVOL").value=CCvol;
> > Is sent from an iframe named SYNTHED , function.
> >
> > I also tried
> > parent.MultiID.document.getElementById("MVOL").value=CCvol;
> Passing a message between parent and child document is easy, just.
> parent.document.getElementById("MVOL").value=CCvol; //From child to parent
> MultiID.document.getElementById("MVOL").value=CCvol; //From parent to child
>
> But howto pass from child to child?
I tried to find information but the information i find do just not apply?
Must i really pipe the call/message via a function within Parent???
MultiID->parent->Synthed???

Re: Message between "child?" documents

<d7198c60-9fde-490c-90c0-e83ed3803617n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17481&group=comp.lang.javascript#17481

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a05:622a:180c:: with SMTP id t12mr25826112qtc.507.1638593267143;
Fri, 03 Dec 2021 20:47:47 -0800 (PST)
X-Received: by 2002:a05:6808:1396:: with SMTP id c22mr13732483oiw.59.1638593266937;
Fri, 03 Dec 2021 20:47:46 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!feeder1.feed.usenet.farm!feed.usenet.farm!newsfeed.xs4all.nl!newsfeed9.news.xs4all.nl!feeder1.cambriumusenet.nl!feed.tweak.nl!209.85.160.216.MISMATCH!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Fri, 3 Dec 2021 20:47:46 -0800 (PST)
In-Reply-To: <51577ac0-76af-4403-97e2-680add2427ban@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=84.217.164.86; posting-account=kxPkPAoAAACjJi8w0gL9bnyznPzdw9HW
NNTP-Posting-Host: 84.217.164.86
References: <615cb71f-8e6f-4afb-b92e-00d8dde3f7ecn@googlegroups.com>
<c1228502-a7d3-4cb6-b3c2-6831ba1592dan@googlegroups.com> <51577ac0-76af-4403-97e2-680add2427ban@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <d7198c60-9fde-490c-90c0-e83ed3803617n@googlegroups.com>
Subject: Re: Message between "child?" documents
From: jonas.thornvall@gmail.com (Jonas Thörnvall)
Injection-Date: Sat, 04 Dec 2021 04:47:47 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
 by: Jonas Thörnvall - Sat, 4 Dec 2021 04:47 UTC

lördag 4 december 2021 kl. 05:46:16 UTC+1 skrev Jonas Thörnvall:
> lördag 4 december 2021 kl. 05:34:14 UTC+1 skrev Jonas Thörnvall:
> > lördag 4 december 2021 kl. 05:24:11 UTC+1 skrev Jonas Thörnvall:
> > > I have a main document with several child documents as iframes.
> > > I have had no problem passing between child and parent, but now i want to mass message between two child documents, but i get error message that the iframe document does not exist?
> > >
> > > So how should i pass the message between the childs.
> > > This message
> > > MultiID.document.getElementById("MVOL").value=CCvol;
> > > Is sent from an iframe named SYNTHED , function.
> > >
> > > I also tried
> > > parent.MultiID.document.getElementById("MVOL").value=CCvol;
> > Passing a message between parent and child document is easy, just.
> > parent.document.getElementById("MVOL").value=CCvol; //From child to parent
> > MultiID.document.getElementById("MVOL").value=CCvol; //From parent to child
> >
> > But howto pass from child to child?
> I tried to find information but the information i find do just not apply?
> Must i really pipe the call/message via a function within Parent???
> MultiID->parent->Synthed???
That seem ugly need to invoke a parent function to pass it between them?

Re: Message between "child?" documents

<2aaa3cb2-8ed9-429d-844c-c11245868acan@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17482&group=comp.lang.javascript#17482

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a05:622a:1654:: with SMTP id y20mr25102080qtj.374.1638594201830;
Fri, 03 Dec 2021 21:03:21 -0800 (PST)
X-Received: by 2002:a05:6830:3499:: with SMTP id c25mr20485224otu.206.1638594201583;
Fri, 03 Dec 2021 21:03:21 -0800 (PST)
Path: i2pn2.org!i2pn.org!weretis.net!feeder8.news.weretis.net!news.uzoreto.com!news-out.netnews.com!news.alt.net!fdc2.netnews.com!peer03.ams1!peer.ams1.xlned.com!news.xlned.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Fri, 3 Dec 2021 21:03:21 -0800 (PST)
In-Reply-To: <d7198c60-9fde-490c-90c0-e83ed3803617n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=84.217.164.86; posting-account=kxPkPAoAAACjJi8w0gL9bnyznPzdw9HW
NNTP-Posting-Host: 84.217.164.86
References: <615cb71f-8e6f-4afb-b92e-00d8dde3f7ecn@googlegroups.com>
<c1228502-a7d3-4cb6-b3c2-6831ba1592dan@googlegroups.com> <51577ac0-76af-4403-97e2-680add2427ban@googlegroups.com>
<d7198c60-9fde-490c-90c0-e83ed3803617n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <2aaa3cb2-8ed9-429d-844c-c11245868acan@googlegroups.com>
Subject: Re: Message between "child?" documents
From: jonas.thornvall@gmail.com (Jonas Thörnvall)
Injection-Date: Sat, 04 Dec 2021 05:03:21 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 3051
 by: Jonas Thörnvall - Sat, 4 Dec 2021 05:03 UTC

lördag 4 december 2021 kl. 05:47:50 UTC+1 skrev Jonas Thörnvall:
> lördag 4 december 2021 kl. 05:46:16 UTC+1 skrev Jonas Thörnvall:
> > lördag 4 december 2021 kl. 05:34:14 UTC+1 skrev Jonas Thörnvall:
> > > lördag 4 december 2021 kl. 05:24:11 UTC+1 skrev Jonas Thörnvall:
> > > > I have a main document with several child documents as iframes.
> > > > I have had no problem passing between child and parent, but now i want to mass message between two child documents, but i get error message that the iframe document does not exist?
> > > >
> > > > So how should i pass the message between the childs.
> > > > This message
> > > > MultiID.document.getElementById("MVOL").value=CCvol;
> > > > Is sent from an iframe named SYNTHED , function.
> > > >
> > > > I also tried
> > > > parent.MultiID.document.getElementById("MVOL").value=CCvol;
> > > Passing a message between parent and child document is easy, just.
> > > parent.document.getElementById("MVOL").value=CCvol; //From child to parent
> > > MultiID.document.getElementById("MVOL").value=CCvol; //From parent to child
> > >
> > > But howto pass from child to child?
> > I tried to find information but the information i find do just not apply?
> > Must i really pipe the call/message via a function within Parent???
> > MultiID->parent->Synthed???
> That seem ugly need to invoke a parent function to pass it between them?
Well instead of send message from child, i decided to let child call a function in parent that will send the message to the other child.

Re: Message between "child?" documents

<4c7f2226-34d4-4ec8-8953-562b06f8c6e8n@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17483&group=comp.lang.javascript#17483

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:a05:620a:4ef:: with SMTP id b15mr21896439qkh.662.1638594346959;
Fri, 03 Dec 2021 21:05:46 -0800 (PST)
X-Received: by 2002:a4a:e155:: with SMTP id p21mr15435503oot.84.1638594346696;
Fri, 03 Dec 2021 21:05:46 -0800 (PST)
Path: i2pn2.org!i2pn.org!aioe.org!news.uzoreto.com!news-out.netnews.com!news.alt.net!fdc2.netnews.com!peer02.ams1!peer.ams1.xlned.com!news.xlned.com!peer02.ams4!peer.am4.highwinds-media.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Fri, 3 Dec 2021 21:05:46 -0800 (PST)
In-Reply-To: <2aaa3cb2-8ed9-429d-844c-c11245868acan@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=97.87.183.68; posting-account=G1KGwgkAAAAyw4z0LxHH0fja6wAbo7Cz
NNTP-Posting-Host: 97.87.183.68
References: <615cb71f-8e6f-4afb-b92e-00d8dde3f7ecn@googlegroups.com>
<c1228502-a7d3-4cb6-b3c2-6831ba1592dan@googlegroups.com> <51577ac0-76af-4403-97e2-680add2427ban@googlegroups.com>
<d7198c60-9fde-490c-90c0-e83ed3803617n@googlegroups.com> <2aaa3cb2-8ed9-429d-844c-c11245868acan@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <4c7f2226-34d4-4ec8-8953-562b06f8c6e8n@googlegroups.com>
Subject: Re: Message between "child?" documents
From: luser.droog@gmail.com (luserdroog)
Injection-Date: Sat, 04 Dec 2021 05:05:46 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 3352
 by: luserdroog - Sat, 4 Dec 2021 05:05 UTC

On Friday, December 3, 2021 at 11:03:25 PM UTC-6, jonas.t...@gmail.com wrote:
> lördag 4 december 2021 kl. 05:47:50 UTC+1 skrev Jonas Thörnvall:
> > lördag 4 december 2021 kl. 05:46:16 UTC+1 skrev Jonas Thörnvall:
> > > lördag 4 december 2021 kl. 05:34:14 UTC+1 skrev Jonas Thörnvall:
> > > > lördag 4 december 2021 kl. 05:24:11 UTC+1 skrev Jonas Thörnvall:
> > > > > I have a main document with several child documents as iframes.
> > > > > I have had no problem passing between child and parent, but now i want to mass message between two child documents, but i get error message that the iframe document does not exist?
> > > > >
> > > > > So how should i pass the message between the childs.
> > > > > This message
> > > > > MultiID.document.getElementById("MVOL").value=CCvol;
> > > > > Is sent from an iframe named SYNTHED , function.
> > > > >
> > > > > I also tried
> > > > > parent.MultiID.document.getElementById("MVOL").value=CCvol;
> > > > Passing a message between parent and child document is easy, just.
> > > > parent.document.getElementById("MVOL").value=CCvol; //From child to parent
> > > > MultiID.document.getElementById("MVOL").value=CCvol; //From parent to child
> > > >
> > > > But howto pass from child to child?
> > > I tried to find information but the information i find do just not apply?
> > > Must i really pipe the call/message via a function within Parent???
> > > MultiID->parent->Synthed???
> > That seem ugly need to invoke a parent function to pass it between them?
> Well instead of send message from child, i decided to let child call a function in parent that will send the message to the other child.

That's sounds like what I would recommend.
Function! Hurray. Functions always win.

Re: Message between "child?" documents

<fd8d66c8-27c3-40fe-b0bf-a720173734afn@googlegroups.com>

  copy mid

https://www.rocksolidbbs.com/devel/article-flat.php?id=17485&group=comp.lang.javascript#17485

  copy link   Newsgroups: comp.lang.javascript
X-Received: by 2002:ac8:4a0e:: with SMTP id x14mr25481745qtq.345.1638595719488; Fri, 03 Dec 2021 21:28:39 -0800 (PST)
X-Received: by 2002:a05:6830:22cf:: with SMTP id q15mr19709838otc.255.1638595719237; Fri, 03 Dec 2021 21:28:39 -0800 (PST)
Path: i2pn2.org!i2pn.org!news.nntp4.net!news.dns-netz.com!news.freedyn.net!newsfeed.xs4all.nl!newsfeed7.news.xs4all.nl!tr2.eu1.usenetexpress.com!feeder.usenetexpress.com!tr2.iad1.usenetexpress.com!border1.nntp.dca1.giganews.com!nntp.giganews.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.lang.javascript
Date: Fri, 3 Dec 2021 21:28:39 -0800 (PST)
In-Reply-To: <4c7f2226-34d4-4ec8-8953-562b06f8c6e8n@googlegroups.com>
Injection-Info: google-groups.googlegroups.com; posting-host=84.217.164.86; posting-account=kxPkPAoAAACjJi8w0gL9bnyznPzdw9HW
NNTP-Posting-Host: 84.217.164.86
References: <615cb71f-8e6f-4afb-b92e-00d8dde3f7ecn@googlegroups.com> <c1228502-a7d3-4cb6-b3c2-6831ba1592dan@googlegroups.com> <51577ac0-76af-4403-97e2-680add2427ban@googlegroups.com> <d7198c60-9fde-490c-90c0-e83ed3803617n@googlegroups.com> <2aaa3cb2-8ed9-429d-844c-c11245868acan@googlegroups.com> <4c7f2226-34d4-4ec8-8953-562b06f8c6e8n@googlegroups.com>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <fd8d66c8-27c3-40fe-b0bf-a720173734afn@googlegroups.com>
Subject: Re: Message between "child?" documents
From: jonas.thornvall@gmail.com (Jonas Thörnvall)
Injection-Date: Sat, 04 Dec 2021 05:28:39 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
Lines: 50
 by: Jonas Thörnvall - Sat, 4 Dec 2021 05:28 UTC

lördag 4 december 2021 kl. 06:05:50 UTC+1 skrev luser...@gmail.com:
> On Friday, December 3, 2021 at 11:03:25 PM UTC-6, jonas.t...@gmail.com wrote:
> > lördag 4 december 2021 kl. 05:47:50 UTC+1 skrev Jonas Thörnvall:
> > > lördag 4 december 2021 kl. 05:46:16 UTC+1 skrev Jonas Thörnvall:
> > > > lördag 4 december 2021 kl. 05:34:14 UTC+1 skrev Jonas Thörnvall:
> > > > > lördag 4 december 2021 kl. 05:24:11 UTC+1 skrev Jonas Thörnvall:
> > > > > > I have a main document with several child documents as iframes.
> > > > > > I have had no problem passing between child and parent, but now i want to mass message between two child documents, but i get error message that the iframe document does not exist?
> > > > > >
> > > > > > So how should i pass the message between the childs.
> > > > > > This message
> > > > > > MultiID.document.getElementById("MVOL").value=CCvol;
> > > > > > Is sent from an iframe named SYNTHED , function.
> > > > > >
> > > > > > I also tried
> > > > > > parent.MultiID.document.getElementById("MVOL").value=CCvol;
> > > > > Passing a message between parent and child document is easy, just..
> > > > > parent.document.getElementById("MVOL").value=CCvol; //From child to parent
> > > > > MultiID.document.getElementById("MVOL").value=CCvol; //From parent to child
> > > > >
> > > > > But howto pass from child to child?
> > > > I tried to find information but the information i find do just not apply?
> > > > Must i really pipe the call/message via a function within Parent???
> > > > MultiID->parent->Synthed???
> > > That seem ugly need to invoke a parent function to pass it between them?
> > Well instead of send message from child, i decided to let child call a function in parent that will send the message to the other child.
> That's sounds like what I would recommend.
> Function! Hurray. Functions always win.

Well actually it do work to pass child to child document by use.
parent.MultiID.document.getElementById("MVOL").value=CCvol;

The dynamically created MVOL element was simply missing ' ' around it so it was never registered as an ID.
But functions are nice. :)


devel / comp.lang.javascript / Message between "child?" documents

1
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor