I have those hints
Have can I remove it from browser by android?
Is this possible with JavaScript?
JavaScript
2
something like:
const MyTextInput = () => { return ( <View> <TextInput autoCorrect={false} /> </View> ); };
With the autoCorrect={false} property set, the word suggestions and corrections should be disabled for the TextInput in your app.
In HTML, disable the autocomplete, spellcheck, autocorrect, and autocapitalize attributes on the <input> element.
autocomplete
spellcheck
autocorrect
autocapitalize
<input>
<input type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" />
Do you want to do it through JavaScript? Use the setAttribute() method.
setAttribute()
const text = document.getElementById("text"); text.setAttribute("autocomplete", "off"); text.setAttribute("autocorrect", "off"); text.setAttribute("autocapitalize", "off"); text.setAttribute("spellcheck", "false");
<input type="text" id="text" />
Click here to cancel reply.
2
Answers
something like:
With the autoCorrect={false} property set, the word suggestions and corrections should be disabled for the TextInput in your app.
In HTML, disable the
autocomplete
,spellcheck
,autocorrect
, andautocapitalize
attributes on the<input>
element.Do you want to do it through JavaScript? Use the
setAttribute()
method.