Making Textarea Work With iPad
You can't use rich text in textareas when using an iPad or iPhone. So, to check for iPad or iPhone and remove the rich text feature do this:

<textarea name="post" cols="60" rows="10" id="post" <cfif (REFind("iPad|iPhone|iPod|Android", CGI.HTTP_USER_AGENT) GT 0)><cfelse>class="wysiwyg"</cfif>></textarea>

Archives