Has anyone found html textarea plugin that works with iPad?
If i use any plug-in to convert textarea to html rich editor, it hides textarea and adds iframe in place of it. When i click on iframe in windows i can add/edit text like a textarea. Where as in iPad i click on it it doesn’t pop up keyboard as its not a textbox or textarea instead its iframe.
i need it for jquery based chat which can run on both computer and iPad. So i need to allow simple formating of text like bold, italic, font etc.
Mobile Safari in iOS prior to version 5 doesn’t support
contenteditableordesignMode, which is the built-in browser editing functionality that underpins most JavaScript rich text editors. You’ll need to find another way, such as drawing your own caret and collecting input in a (possibly off-screen) textarea, which is what Google Docs, ACE and CodeMirror do. This is quite involved though.Another alternative is the Stack Overflow approach, which uses Markdown in a textarea with formatting buttons.