Why does the spellcheck attribute work fine in IE but not in Edge for text inputs? Here is my code:
<input spellcheck="true"></input>
Text area spell checking works fine in Edge but not text inputs.
Or is there a workaround?
Why does the spellcheck attribute work fine in IE but not in Edge for text inputs? Here is my code:
<input spellcheck="true"></input>
Text area spell checking works fine in Edge but not text inputs.
Or is there a workaround?
As a workaround you could use a single line textarea.
<textarea rows="1"></textarea>
see fiddle as an example
It appears that this is only supported in EdgeHtml versions 15 and above (https://caniuse.com/#feat=spellcheck-attribute)
It won't work on input tags if you are using Edge with EdgeHtml of 14 and below.
See @msokrates answer for the workaround