Optimizing Pages For iPhone
To optimize your pages for the iPhone (for instance, removing the rich text editing feature) you can run this code at the beginning of any page that may need to be optimized:

<!--- detect iphone --->
<cfif findNoCase("iphone", cgi.http_user_agent)>
   <cflocation url="optimizedpage.cfm" addToken="false">
</cfif>

Archives