I have a contenteditable div where users can post comments:
<div contenteditable="true"></div>
However, when you type in this field on a mobile phone, it does not autocapitalize the first letter after a sentence.
On mobile, it should capitalize the first letter after each sentence ends. So:
"This is a sentence. Now, the word 'now' should be capitalized"
I know that this may only be a feature for input fields, but is there a way to achieve/hack this on a contenteditable element?