Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Custom Spellchecker Javascript [closed]

I want to write a simple javascript code for a text area, which should spell check the words in the text area with custom word list (medical words). I have a word list with more than 5000 medical words and I want to use that as the custom list. After comparing with the custom list, if the spelling is wrong, it should provide suggestions from the custom list, so that you can correct in the text area.

Are there any javascripts out there for this? I tried BJspell, but there is no option to add custom words.

like image 848
vel2013 Avatar asked Dec 15 '13 09:12

vel2013


1 Answers

1) try this https://github.com/badsyntax/jquery-spellchecker

here is a sample http://jquery-spellchecker.badsyntax.co/

2) try this http://www.javascriptspellcheck.com/

like image 133
GeniusJRS Avatar answered Oct 24 '22 02:10

GeniusJRS