I am developing a web application using PhoneGap that will be distributed to several mobile OS, including iOS.
When I create an application for iOS, numeric values ββwith at least 7 digits change to telephone bindings, to βfixβ this I added the following event handler:
$( 'a[href^="tel"]' ).live( 'click', function() { return false; });
This code works fine except when I use jQuery Mobile, any idea why?
source share