I have an input in an HTML page
<input id="SearchBox" type="text" value="" width="300px"
title="Search the card pool" autocomplete="off" maxlength="170">
I would like to switch this off with something like autospellcheck="off". Is there a way to achieve that?
Is there also a way to switch this off for Firefox?
Use the spellcheck
attribute:
<textarea spellcheck="false"></textarea>
See Spellcheck (MSDN) or Controlling spell checking in HTML forms (MDN).