Editor Init & Function (Same onChange)

I am using a web editor (TinyMCE) that needs to show itself when a selection is made from drop-down menu (web application). I already set fields using a JS function in the onChange. This works fine… but am wondering if I can include the TinyMCE init before the function in the onChange? I tried… first run did nothing but launch the function. It seems to be skipping the init. Any other ideas. I’m hiding fields + the editor instances until a keyword is selected. IOW… hide all if the value is “Please Select One.”

Init code…;

changefields()

Subject: Editor Init & Function (Same onChange)

Not knowing your UI logic in detail, I would assume, that you could run the init onload (or after the textarea) as you would normally do without your onchange field. Just place the textarea in a div that’s originally hidden and/or displayed offscreen.

Subject: RE: Editor Init & Function (Same onChange)

Thanks… am not used to

but would like to. I’ll do some research. At the moment, I am using a subform that loads based on group membership. This works fine… loads the 5 Notes fields that are used as TinyMCE . The fields hide just fine… but the editors still show and are hanging at the bottom like “ghosts.” Can you explain the
option a bit more? Many thanks…