I have a web application that uses TinyMce to allow rich text editing. Some of my customers are desperate to get it to work on iPad (which doesn't support contenteditable and therefore TinyMce doesn't work)
At the moment the only choices I have are:
- Disallow rich text editing when i detect the browser is iPad. This is not much of a solution because my app relies heavily on rich text editing
- Wait for iPad to support contentEditable
- Write my own iPad app. This isn't really workable because it's a big complex app with loads of HTML and javascript and I would have to rewrite it all
- Use another browser. As far as I know none of the other browsers support contenteditable either.
I'm really keen to find some workable solution. is there such thing as a rich text editor that doesn't require contenteditable? or does anyone have a clever idea I hadn't thought of?
Thanks in advance
Andy
<textarea>is working on IPad. This means, you need some kind of button to "enable editing", then switch for example<p>Test</p>with<textarea>Test</Textarea>and then somehow save this change... going to try this now. Any comments about this? Is it possible? – zyrex Oct 11 '11 at 8:49