I have an input textbox on a web form that is being viewed on IE9 mobile, and I'm unable to figure out how to enable auto correct. It would appear that the attribute autocorrect=on
is the trick for webkit browsers, but if there is an attribute/class for IE9 mobile, I haven't been able to find it.
For reference, here is what I have for the textbox currently:
<input type="text" name="subject" id="subjectField" value="" autocorrect="on" />
Anyone have any tips?