I have a simple form, with a textarea field, I need to append some texts to textarea with JavaScriptSpellCheck
plugin attached.
I have tried:
.append
, .html
, .text
using jQuery , and javascript but nothing happens.
I read the documentation (http://www.javascriptspellcheck.com/Object_Reference) but I can't get something useful, there any way possible?
Thanks in advance!!!
My are simple, just a common simple textarea, but when the plugin is attached I cant add a dynamic text to the textarea, the situation : When the user click on "Tips or Examples", I need to append/add to my textarea.. but i cant destroy the plugin or make something to add the text,
$('textarea').spellAsYouType({ checkGrammar:true, showLanguagesInContextMenu: false, userInterfaceTranslation:'es', theme:'bright' });I try to add some text but doesnt work!, I see only the words 'test' but only work if the user type the word on the textarea, I need to make this 'dynamic'... when the plugin is attached my textarea is hidden and add some divs on my form.
Capture (Firebug/HTML) http://psylux.com.ar/rose/javascriptspellcheck.jpg