Which Javascript text editor will not violate browser spell checking?

I am using TinyMCE in an ASP.Net project and I need spell checking. The only TinyMCE plugins I found use PHP on the server side, and I think I could just break and install PHP on my server and do it, but frankly, what a pain. I do not want to do this.

As it turns out, Firefox's built-in spell checking will work fine for me, but it doesn't work in the TinyMCE editor blocks. I have included the gecko_spellcheck parameter, which should fix it, but it is not.

Does anyone know a good rich text editor that doesn't violate browser spellchecking?

+3
source share
3 answers

TinyMCE , , gecko_spellcheck ( ). , tinyMCE.init() - :

tinyMCE.init({
    mode : "textareas",
    theme : "simple",
    gecko_spellcheck : true
});
+4

, ( ), , Safari.

Safari ( FF IE7 +), , Safari , .

+1

yahoo! Rich Text Editor FireFox.

I also tested FCKeditor, but this requires users to install additional plugins on their computer.

0
source

Source: https://habr.com/ru/post/1696504/


All Articles