hello all , well , as i said in topic title , i have image generator , but i need to add auto correct to the prompt , i mean if i type " pepol " instead of " people " it gives me red underline " and ability to correct it like here for example
if you construct this promptbox, add in <textarea> 's settings
<textarea spellcheck="true" autocomplete="on" autocorrect="on" autocapitalize="on" rows="5" cols="50"></textarea>spellcheck=“true” - enables spell checking (may highlight errors).
autocomplete=“on” - helps the browser to suggest text.
autocorrect=“on” (for some browsers/devices) - auto-correct.
autocapitalize=“on” - includes auto-capital letters.
or if you just use framework, then add in java script
textarea.spellcheck = true; textarea.autocomplete = "on"; textarea.autocorrect = "on"; textarea.autocapitalize = "on";thank you very much
oh i forgot one line
const textarea = document.querySelector('textarea'); textarea.spellcheck = true; textarea.autocomplete = "on"; textarea.autocorrect = "on"; textarea.autocapitalize = "on";tell me later if it worked or not
Most browsers have a grammar check option. You need to look into your browser settings and enable it.
i used chrome and it has it already every here when i type to you its check any grammar or spelling check but that not happen when i type in prompt box


