Titanium webview bug or "feature"? Numbers converted to telephone links
        Posted  
        
            by Alan Neal
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Alan Neal
        
        
        
        Published on 2010-04-17T02:50:02Z
        Indexed on 
            2010/04/17
            2:53 UTC
        
        
        Read the original article
        Hit count: 670
        
I can't stop Titanium's webview from converting numbers to telephone links.
For instance, let's say I programmatically set the innerHTML of a div called test to 96840664702 and then write javascript...
alert(document.getElementById('test').innerHTML 
In Mobile Safari on the iPhone, Firefox, etc., the alert will read "96840664702". If I point Titanium's webview to the same page, the alert will read:
<a href="tel:96840664702" x-apple-data=detectors="true">96840664702</a>
How can I globally disable the data-detectors? I tried a couple meta-tags...
<meta name=”format-detection” content=”telephone=no” >
<meta name="x-" http-equiv="x-rim-auto-match" forua="true" content="none"/>
... but they didn't work. I couldn't find a reference for a meta tag that specifically mentioned Apple's detectors.
Again, it's only a problem in Titanium's webview. It works everywhere else.
© Stack Overflow or respective owner