-
Hi,
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @nrschoen, You could use the The way to access the value of a
But that will probably not work here because the DOM will have been cleared before the |
Beta Was this translation helpful? Give feedback.
Hi @nrschoen,
You could use the
survey-text
plugin to handle this and stick your HTML for the stimulus in theprompt
parameter for the question.The way to access the value of a
<textarea>
is through it's value property.document.getElementById("textArea").value
But that will probably not work here because the DOM will have been cleared before the
on_finish
function runs. You would need to get this value before the display is cleared, but that happens inside the plugin code.