All Questions
Tagged with spell-checking javascript
85 questions
0
votes
1
answer
118
views
DevExpress SpellChecker - ASP .NET Core
I am having an issue with a spellchecker I am trying to set up. The target platform for running my application is .Net Framework 4.8
First of all, I followed the Spellcheck chapter from the ASP.NET ...
0
votes
1
answer
223
views
Creating a Spell Check Feature with Underline and Popup in Textarea with pure HTML, CSS, JS
I want to create a textarea with a spell check feature similar to Grammarly. When a misspelled word is typed, it should be underlined. Clicking on the underline should trigger a popup like this.
Upon ...
1
vote
0
answers
77
views
BJSpell and contenteditable div - Trying to position the error marks
I'm creating a basic spellchecker that uses the BJSpell.js library.
I've found I cannot reliably update the contenteditable div directly without losing focus / resetting the caret to the beginning. I'...
2
votes
0
answers
235
views
Javascript to detect if enhanced spell check is enabled in browser
Chrome and Edge have an option to spell check form contents as its typed in by the person completing the form.
Spell checks can be off, on or enhanced.
When enhanced is chosen the contents of the form ...
1
vote
0
answers
377
views
How would i add custom spell checking to quilljs?
I'm building a website where I need to control the dictionary of the spell checking in a Quill editor. I have googled a lot and can not find any simple way to do this.
Ideally, I would like to do ...
5
votes
4
answers
1k
views
How does Grammarly know where to position the red underline?
I've recently become fascinated with how tools like LanguageTool and Grammarly show red underlines on mispelled words on the screen. I'd like to do something similar but to show rich popovers with ...
0
votes
1
answer
61
views
How to map visible text indices to their location in an HTML tree
I am trying to implement a web-based rich text editor that will automatically decorate the user's text while he's typing (think spellcheck).
The issue is that the server only processes raw text, and ...
8
votes
2
answers
8k
views
VS Code: cspell checker stopped working, getting 'command resulted in as an error, command not found'
I used Code Spell Checker in VS Code for many months, and it's stopped working. I'm using 'Code Spell Checker' and 'Polish - Code Spell Checker'. I tried uninstall , reload extensions, tried with only ...
0
votes
1
answer
2k
views
Is there a way to access browser spell suggestions from javascript?
I am trying to make a search bar in my website which searches for a certain sentence in the database, I want to be able to correct the spelling of the form input before submitting it. I've noticed ...
1
vote
2
answers
703
views
remove spell check on input WITH JAVASCRIPT
i have a JavaScript program that make input and a want to remove spell check.
let inp = document.createElement('input');
inp.placeholder = "enter line of code";
inp.autocomplete = "off&...
1
vote
0
answers
17
views
Capture spellchecked words from browser input with JavaScript [duplicate]
In HTML, when the spellcheck global attribute is enabled for an input (spellcheck="true"), most browsers display misspelled words with a dotted red underline.
Is there a way to use ...
0
votes
1
answer
2k
views
How to create node in React JS similar to Javascript?
I just build a spell checker functionality using contenteditable. Whenever the user keyup it'll be triggered. The wrong words will be wrapped with a mark tag. I have just done using javascript but I ...
2
votes
1
answer
582
views
Is there a way to return misspelled words in a textarea with Javascript?
I want to make a function that creates a list of the words that are misspelled inside a textarea. Is there a way to get the words that are underlined in red for being misspelled according to the ...
0
votes
0
answers
926
views
Remove underlines after setting the spellcheck attribute to false
I'm using React/MobX. Chrome is the target browser. I have a contenteditable div and the spellcheck button, which simply changes the spellcheck attribute of the contenteditable div. Once it's set to ...
3
votes
0
answers
481
views
How to include additional words for spell check in html?
I am able to do spell check in html using the code below but I want to include medical words as well, as a custom dictionary to this spell check. Is there a method to do this ?
# Syntax for ...