Inplace editor and textarea

Hi,

I have an inplace editor and I can access the innerHTML value of the
created form. However the innerHTML gives “…
…”

How can I access the textarea value? I tried to do
innerHTML.textarea.value but it didn’t work. Any ideas will be
appreciated.

Thanks,
Joe

It looks like your in-place editor contains a text area that it is
manipulating.

You could try innerHTML.textarea.innerHTML to get the content of the
text area. But, the in-place editor probably has a documented way to
access the content that uses JavaScript.

Michael

MichaelLatta wrote:

It looks like your in-place editor contains a text area that it is
manipulating.

You could try innerHTML.textarea.innerHTML to get the content of the
text area. But, the in-place editor probably has a documented way to
access the content that uses JavaScript.

Michael

Thank you, Michael.

*t

produces:

‘<textarea name=“value” … > … …’

*text.iH

produces:

Error:
$(“jot_jot_1046_in_place_editor-inplaceeditor”).innerHTML.textarea has
no properties
Line: 1

I can access the value of the textarea field when I use

*elementsbyname

However, if there are two inplace editors “open” on the screen then the
above call for the second editor returns the value of the first one.

Thank you for any insight you can provide.

Joe