Quick reminder: manchmal nervt Auto-Complete, Auto-Correct und Auto-Capitalize in Browsern einfach.
Um dieses Verhalten abzuschalten, genügen wenige Attribute für das jeweilige HTML-Tag (input
oder textarea
):
// HTML attributes to get rid of these features which are sometimes annoying
<input autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" />
<textarea autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false"></textarea>