i am using jspell in my legacy project for spelling checks. I am not sure which version/module it is.Earlier it was used for simple text area where user could write only plain text. Now i am using tinyMCE editor(attached with text area) . Now that spell check functionality breaks. I was able to make it work with below change
function getSpellCheckArray() {
// some processing
fieldsToCheck[fieldsToCheck.length]='document.forms["form"].myTextArea';// lin 1
// some processing
}
Tweak i did is add below line above line1
document.forms["form"].myTextArea.value=tinyMCE.activeEditor.getContent();
It works fine. But problem is i see some html tags appended in window that displays spelling suggestions(these are the html tags attached by tinymce behind the scenes).
Now my question is is there a way i can integrate the tinymce with jspell? I can see one JSpell Evolution module specifically designed for tinyMCE like editors but thats paid :(. Another solution is at http://www.tinymce.com/wiki.php/Plugin:spellchecker but uses jazzy spell checker at back end. I am looking for how can i integrate tinymce with jspell?