[Help] i have ai image generator , how to add auto correct to the prompt box ?

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

0 points · 5 comments · view on lemmy.world

5 Comments

qinerous@lemmy.world · 2 pts · 1y (2 replies)

if you construct this promptbox, add in '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"; 
Anubis2025@lemmy.world · 1 pts · 1y (1 reply)

thank you very much

qinerous@lemmy.world · 1 pts · 1y

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

Koto@lemmy.world · 1 pts · 1y (1 reply)

Most browsers have a grammar check option. You need to look into your browser settings and enable it.

Anubis2025@lemmy.world · 1 pts · 1y

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