IPhone designmode support

Does anyone know if Safari supports iPhone and iPod touch iFrame in development mode, and if so, how can I enable it? I tried the following methods, but no one works (but it works on my PC):

theIframe.contentWindow.document.body.contentEditable = true; theIframe.contentWindow.document.designMode = 'on'; theIframe.contentDocument.designMode = "on"; 

Thanks!

+3
source share
1 answer

In accordance with [1], the content should at least work:

contenteditable

If true, the item can be edited on the fly; if false, it cannot. >

Availability

Available in Safari 1.2 and later. Available on iPhone OS 1.0 and later.

.. but this is not for me: - (

[1] http://developer.apple.com/safari/library/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/Attributes.html

+2
source

All Articles