I have a contentEditable div in a UIWebView. I want to disable the spell check feature.
Is there any API in the UIWebView ?
Thanks.
I have a contentEditable div in a UIWebView. I want to disable the spell check feature.
Is there any API in the UIWebView ?
Thanks.
Have you tried this?
<div autocorrect="false" contenteditable="true"></div>
For me this works:
<div autocomplete="off" autocorrect="off" contenteditable="true" />
Please Check this. How can I disable the spell checker on text inputs on the iPhone